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