#[repr(C)]pub struct drm_mode_create_blob {
pub data: __u64,
pub length: __u32,
pub blob_id: __u32,
}Expand description
struct drm_mode_create_blob - Create New blob property
Create a new ‘blob’ data property, copying length bytes from data pointer, and returning new blob ID.
Fields§
§data: __u64@data: Pointer to data to copy.
length: __u32@length: Length of data to copy.
blob_id: __u32@blob_id: Return: new property ID.
Trait Implementations§
Source§impl Clone for drm_mode_create_blob
impl Clone for drm_mode_create_blob
Source§fn clone(&self) -> drm_mode_create_blob
fn clone(&self) -> drm_mode_create_blob
Returns a duplicate 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 drm_mode_create_blob
impl Debug for drm_mode_create_blob
impl Copy for drm_mode_create_blob
Auto Trait Implementations§
impl Freeze for drm_mode_create_blob
impl RefUnwindSafe for drm_mode_create_blob
impl Send for drm_mode_create_blob
impl Sync for drm_mode_create_blob
impl Unpin for drm_mode_create_blob
impl UnwindSafe for drm_mode_create_blob
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