#[repr(C)]pub struct drm_mode_fb_cmd {
pub fb_id: u32,
pub width: u32,
pub height: u32,
pub pitch: u32,
pub bpp: u32,
pub depth: u32,
pub handle: u32,
}
Fields§
§fb_id: u32
§width: u32
§height: u32
§pitch: u32
§bpp: u32
§depth: u32
§handle: u32
Trait Implementations§
Source§impl Clone for drm_mode_fb_cmd
impl Clone for drm_mode_fb_cmd
Source§fn clone(&self) -> drm_mode_fb_cmd
fn clone(&self) -> drm_mode_fb_cmd
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 drm_mode_fb_cmd
impl Debug for drm_mode_fb_cmd
Source§impl Default for drm_mode_fb_cmd
impl Default for drm_mode_fb_cmd
Source§fn default() -> drm_mode_fb_cmd
fn default() -> drm_mode_fb_cmd
Returns the “default value” for a type. Read more
Source§impl Hash for drm_mode_fb_cmd
impl Hash for drm_mode_fb_cmd
Source§impl PartialEq for drm_mode_fb_cmd
impl PartialEq for drm_mode_fb_cmd
impl Copy for drm_mode_fb_cmd
impl Eq for drm_mode_fb_cmd
impl StructuralPartialEq for drm_mode_fb_cmd
Auto Trait Implementations§
impl Freeze for drm_mode_fb_cmd
impl RefUnwindSafe for drm_mode_fb_cmd
impl Send for drm_mode_fb_cmd
impl Sync for drm_mode_fb_cmd
impl Unpin for drm_mode_fb_cmd
impl UnwindSafe for drm_mode_fb_cmd
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