Struct raw_window_handle::unix::DrmDisplayHandle
source · #[non_exhaustive]pub struct DrmDisplayHandle {
pub fd: i32,
}
Expand description
Raw display handle for the Linux Kernel Mode Set/Direct Rendering Manager.
Construction
let display_handle = DrmDisplayHandle::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.fd: i32
The drm file descriptor.
Implementations§
Trait Implementations§
source§impl Clone for DrmDisplayHandle
impl Clone for DrmDisplayHandle
source§fn clone(&self) -> DrmDisplayHandle
fn clone(&self) -> DrmDisplayHandle
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 DrmDisplayHandle
impl Debug for DrmDisplayHandle
source§impl From<DrmDisplayHandle> for RawDisplayHandle
impl From<DrmDisplayHandle> for RawDisplayHandle
source§fn from(value: DrmDisplayHandle) -> Self
fn from(value: DrmDisplayHandle) -> Self
Converts to this type from the input type.
source§impl Hash for DrmDisplayHandle
impl Hash for DrmDisplayHandle
source§impl PartialEq<DrmDisplayHandle> for DrmDisplayHandle
impl PartialEq<DrmDisplayHandle> for DrmDisplayHandle
source§fn eq(&self, other: &DrmDisplayHandle) -> bool
fn eq(&self, other: &DrmDisplayHandle) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.