Struct raw_window_handle::GbmDisplayHandle
source · #[non_exhaustive]pub struct GbmDisplayHandle {
pub gbm_device: NonNull<c_void>,
}
Expand description
Raw display handle for the Linux Generic Buffer Manager.
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.gbm_device: NonNull<c_void>
The gbm device.
Implementations§
Trait Implementations§
source§impl Clone for GbmDisplayHandle
impl Clone for GbmDisplayHandle
source§fn clone(&self) -> GbmDisplayHandle
fn clone(&self) -> GbmDisplayHandle
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 GbmDisplayHandle
impl Debug for GbmDisplayHandle
source§impl From<GbmDisplayHandle> for RawDisplayHandle
impl From<GbmDisplayHandle> for RawDisplayHandle
source§fn from(value: GbmDisplayHandle) -> Self
fn from(value: GbmDisplayHandle) -> Self
Converts to this type from the input type.
source§impl Hash for GbmDisplayHandle
impl Hash for GbmDisplayHandle
source§impl PartialEq for GbmDisplayHandle
impl PartialEq for GbmDisplayHandle
source§fn eq(&self, other: &GbmDisplayHandle) -> bool
fn eq(&self, other: &GbmDisplayHandle) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for GbmDisplayHandle
impl Eq for GbmDisplayHandle
impl StructuralPartialEq for GbmDisplayHandle
Auto Trait Implementations§
impl Freeze for GbmDisplayHandle
impl RefUnwindSafe for GbmDisplayHandle
impl !Send for GbmDisplayHandle
impl !Sync for GbmDisplayHandle
impl Unpin for GbmDisplayHandle
impl UnwindSafe for GbmDisplayHandle
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