pub enum RawWindowHandle {
Xlib(XlibHandle),
Xcb(XcbHandle),
Wayland(WaylandHandle),
// some variants omitted
}Variants§
Trait Implementations§
Source§impl Clone for RawWindowHandle
impl Clone for RawWindowHandle
Source§fn clone(&self) -> RawWindowHandle
fn clone(&self) -> RawWindowHandle
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RawWindowHandle
Source§impl Debug for RawWindowHandle
impl Debug for RawWindowHandle
impl Eq for RawWindowHandle
Source§impl Hash for RawWindowHandle
impl Hash for RawWindowHandle
Source§impl PartialEq for RawWindowHandle
impl PartialEq for RawWindowHandle
Source§fn eq(&self, other: &RawWindowHandle) -> bool
fn eq(&self, other: &RawWindowHandle) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RawWindowHandle
Auto Trait Implementations§
impl !Send for RawWindowHandle
impl !Sync for RawWindowHandle
impl Freeze for RawWindowHandle
impl RefUnwindSafe for RawWindowHandle
impl Unpin for RawWindowHandle
impl UnsafeUnpin for RawWindowHandle
impl UnwindSafe for RawWindowHandle
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