Struct raw_window_handle::unix::GbmWindowHandle
source · #[non_exhaustive]pub struct GbmWindowHandle {
pub gbm_surface: *mut c_void,
}
Expand description
Raw window handle for the Linux Generic Buffer Manager.
Construction
let handle = GbmWindowHandle::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.gbm_surface: *mut 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<GbmWindowHandle> for GbmWindowHandle
impl PartialEq<GbmWindowHandle> 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 ==
.