#[repr(C, u8)]pub enum RawWindowHandle {
IOS(IOSHandle),
MacOS(MacOSHandle),
Xlib(XlibHandle),
Xcb(XcbHandle),
Wayland(WaylandHandle),
Windows(WindowsHandle),
Web(WebHandle),
Android(AndroidHandle),
Unsupported,
}Variants§
IOS(IOSHandle)
MacOS(MacOSHandle)
Xlib(XlibHandle)
Xcb(XcbHandle)
Wayland(WaylandHandle)
Windows(WindowsHandle)
Web(WebHandle)
Android(AndroidHandle)
Unsupported
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 Ord for RawWindowHandle
impl Ord for RawWindowHandle
Source§fn cmp(&self, other: &RawWindowHandle) -> Ordering
fn cmp(&self, other: &RawWindowHandle) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RawWindowHandle
impl PartialEq for RawWindowHandle
Source§impl PartialOrd for RawWindowHandle
impl PartialOrd for RawWindowHandle
impl Copy for RawWindowHandle
impl Eq for RawWindowHandle
impl Send for RawWindowHandle
impl StructuralPartialEq for RawWindowHandle
Auto Trait Implementations§
impl Freeze for RawWindowHandle
impl RefUnwindSafe 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more