#[repr(C)]pub struct udmabuf_create_item {
pub memfd: u32,
pub __pad: u32,
pub offset: u64,
pub size: u64,
}Fields§
§memfd: u32§__pad: u32§offset: u64§size: u64Trait Implementations§
Source§impl Clone for udmabuf_create_item
impl Clone for udmabuf_create_item
Source§fn clone(&self) -> udmabuf_create_item
fn clone(&self) -> udmabuf_create_item
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for udmabuf_create_item
impl Debug for udmabuf_create_item
Source§impl Default for udmabuf_create_item
impl Default for udmabuf_create_item
Source§fn default() -> udmabuf_create_item
fn default() -> udmabuf_create_item
Returns the “default value” for a type. Read more
Source§impl FlexibleArray<udmabuf_create_item> for udmabuf_create_list
impl FlexibleArray<udmabuf_create_item> for udmabuf_create_list
Source§fn set_len(&mut self, len: usize)
fn set_len(&mut self, len: usize)
Implementations must set flexible array length in the flexible array struct to the value
specified by
len. Appropriate conversions (i.e, usize to u32) are allowed so long as
they don’t overflow or underflow.Source§fn get_len(&self) -> usize
fn get_len(&self) -> usize
Implementations must return the length of the flexible array member. Appropriate
conversions (i.e, usize to u32) are allowed so long as they don’t overflow or underflow.
Source§unsafe fn get_slice(&self, len: usize) -> &[udmabuf_create_item]
unsafe fn get_slice(&self, len: usize) -> &[udmabuf_create_item]
Implementations must return a slice of flexible array member of length
len. Read moreSource§unsafe fn get_mut_slice(&mut self, len: usize) -> &mut [udmabuf_create_item]
unsafe fn get_mut_slice(&mut self, len: usize) -> &mut [udmabuf_create_item]
Implementations must return a mutable slice of flexible array member of length
len. Read moreimpl Copy for udmabuf_create_item
Auto Trait Implementations§
impl Freeze for udmabuf_create_item
impl RefUnwindSafe for udmabuf_create_item
impl Send for udmabuf_create_item
impl Sync for udmabuf_create_item
impl Unpin for udmabuf_create_item
impl UnwindSafe for udmabuf_create_item
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more