#[repr(C)]pub struct DrmModeSetPlane {
pub plane_id: u32,
pub crtc_id: u32,
pub fb_id: u32,
pub flags: u32,
pub crtc_x: i32,
pub crtc_y: i32,
pub crtc_w: u32,
pub crtc_h: u32,
pub src_x: fixedu16_16,
pub src_y: fixedu16_16,
pub src_h: fixedu16_16,
pub src_w: fixedu16_16,
}Fields§
§plane_id: u32§crtc_id: u32§fb_id: u32§flags: u32§crtc_x: i32§crtc_y: i32§crtc_w: u32§crtc_h: u32§src_x: fixedu16_16§src_y: fixedu16_16§src_h: fixedu16_16§src_w: fixedu16_16Implementations§
Trait Implementations§
Source§impl Debug for DrmModeSetPlane
impl Debug for DrmModeSetPlane
Source§impl Default for DrmModeSetPlane
The default value is the result of Self::zeroed.
impl Default for DrmModeSetPlane
The default value is the result of Self::zeroed.
Auto Trait Implementations§
impl Freeze for DrmModeSetPlane
impl RefUnwindSafe for DrmModeSetPlane
impl Send for DrmModeSetPlane
impl Sync for DrmModeSetPlane
impl Unpin for DrmModeSetPlane
impl UnwindSafe for DrmModeSetPlane
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