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 · 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 RawWindowHandle
impl Debug for RawWindowHandle
Source§impl Hash for RawWindowHandle
impl Hash for RawWindowHandle
Source§impl PartialEq for RawWindowHandle
impl PartialEq for RawWindowHandle
impl Copy for RawWindowHandle
impl Eq for RawWindowHandle
impl StructuralPartialEq for RawWindowHandle
Auto Trait Implementations§
impl Freeze for RawWindowHandle
impl RefUnwindSafe for RawWindowHandle
impl !Send for RawWindowHandle
impl !Sync for RawWindowHandle
impl Unpin 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