Struct raw_window_handle::DrmWindowHandle 
source · #[non_exhaustive]pub struct DrmWindowHandle {
    pub plane: u32,
}Expand description
Raw window handle for the Linux Kernel Mode Set/Direct Rendering Manager.
Construction
let handle = DrmWindowHandle::empty();
/* set fields */Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.plane: u32The primary drm plane handle.
Implementations§
Trait Implementations§
source§impl Clone for DrmWindowHandle
 
impl Clone for DrmWindowHandle
source§fn clone(&self) -> DrmWindowHandle
 
fn clone(&self) -> DrmWindowHandle
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 DrmWindowHandle
 
impl Debug for DrmWindowHandle
source§impl From<DrmWindowHandle> for RawWindowHandle
 
impl From<DrmWindowHandle> for RawWindowHandle
source§fn from(value: DrmWindowHandle) -> Self
 
fn from(value: DrmWindowHandle) -> Self
Converts to this type from the input type.
source§impl Hash for DrmWindowHandle
 
impl Hash for DrmWindowHandle
source§impl PartialEq for DrmWindowHandle
 
impl PartialEq for DrmWindowHandle
source§fn eq(&self, other: &DrmWindowHandle) -> bool
 
fn eq(&self, other: &DrmWindowHandle) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Copy for DrmWindowHandle
impl Eq for DrmWindowHandle
impl StructuralEq for DrmWindowHandle
impl StructuralPartialEq for DrmWindowHandle
Auto Trait Implementations§
impl RefUnwindSafe for DrmWindowHandle
impl Send for DrmWindowHandle
impl Sync for DrmWindowHandle
impl Unpin for DrmWindowHandle
impl UnwindSafe for DrmWindowHandle
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