Struct raw_window_handle::unix::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: u32
The 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<DrmWindowHandle> for DrmWindowHandle
impl PartialEq<DrmWindowHandle> 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 ==
.