Struct wgpu::rwh::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) -> RawWindowHandle
fn from(value: GbmWindowHandle) -> RawWindowHandle
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 StructuralEq for GbmWindowHandle
impl StructuralPartialEq for GbmWindowHandle
Auto Trait Implementations§
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.