Enum RawWindowHandleKind

Source
#[repr(u8)]
pub enum RawWindowHandleKind {
Show 16 variants UiKitWindowHandle = 0, AppKitWindowHandle = 1, OrbitalWindowHandle = 2, OhosNdkWindowHandle = 3, XlibWindowHandle = 4, XcbWindowHandle = 5, WaylandWindowHandle = 6, DrmWindowHandle = 7, GbmWindowHandle = 8, Win32WindowHandle = 9, WinRtWindowHandle = 10, WebWindowHandle = 11, WebCanvasWindowHandle = 12, WebOffscreenCanvasWindowHandle = 13, AndroidNdkWindowHandle = 14, HaikuWindowHandle = 15,
}

Variants§

§

UiKitWindowHandle = 0

A raw window handle for UIKit (Apple’s non-macOS windowing library).

§Availability Hints

This variant is likely to be used on iOS, tvOS, (in theory) watchOS, and Mac Catalyst ($arch-apple-ios-macabi targets, which can notably use UIKit or AppKit), as these are the targets that (currently) support UIKit.

§

AppKitWindowHandle = 1

A raw window handle for AppKit.

§Availability Hints

This variant is likely to be used on macOS, although Mac Catalyst ($arch-apple-ios-macabi targets, which can notably use UIKit or AppKit) can also use it despite being target_os = "ios".

§

OrbitalWindowHandle = 2

A raw window handle for the Redox operating system.

§Availability Hints

This variant is used by the Orbital Windowing System in the Redox operating system.

§

OhosNdkWindowHandle = 3

A raw window handle for the OpenHarmony OS NDK

§Availability Hints

This variant is used on OpenHarmony OS (target_env = "ohos").

§

XlibWindowHandle = 4

A raw window handle for Xlib.

§Availability Hints

This variant is likely to show up anywhere someone manages to get X11 working that Xlib can be built for, which is to say, most (but not all) Unix systems.

§

XcbWindowHandle = 5

A raw window handle for Xcb.

§Availability Hints

This variant is likely to show up anywhere someone manages to get X11 working that XCB can be built for, which is to say, most (but not all) Unix systems.

§

WaylandWindowHandle = 6

A raw window handle for Wayland.

§Availability Hints

This variant should be expected anywhere Wayland works, which is currently some subset of unix systems.

§

DrmWindowHandle = 7

A raw window handle for the Linux Kernel Mode Set/Direct Rendering Manager

§Availability Hints

This variant is used on Linux when neither X nor Wayland are available

§

GbmWindowHandle = 8

A raw window handle for the Linux Generic Buffer Manager.

§Availability Hints

This variant is present regardless of windowing backend and likely to be used with EGL_MESA_platform_gbm or EGL_KHR_platform_gbm.

§

Win32WindowHandle = 9

A raw window handle for Win32.

§Availability Hints

This variant is used on Windows systems.

§

WinRtWindowHandle = 10

A raw window handle for WinRT.

§Availability Hints

This variant is used on Windows systems.

§

WebWindowHandle = 11

A raw window handle for the Web.

§Availability Hints

This variant is used on Wasm or asm.js targets when targeting the Web/HTML5.

§

WebCanvasWindowHandle = 12

A raw window handle for a Web canvas registered via wasm-bindgen.

§Availability Hints

This variant is used on Wasm or asm.js targets when targeting the Web/HTML5.

§

WebOffscreenCanvasWindowHandle = 13

A raw window handle for a Web offscreen canvas registered via wasm-bindgen.

§Availability Hints

This variant is used on Wasm or asm.js targets when targeting the Web/HTML5.

§

AndroidNdkWindowHandle = 14

A raw window handle for Android NDK.

§Availability Hints

This variant is used on Android targets.

§

HaikuWindowHandle = 15

A raw window handle for Haiku.

§Availability Hints

This variant is used on HaikuOS.

Trait Implementations§

Source§

impl Clone for RawWindowHandleKind

Source§

fn clone(&self) -> RawWindowHandleKind

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for RawWindowHandleKind

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Hash for RawWindowHandleKind

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for RawWindowHandleKind

Source§

fn cmp(&self, other: &RawWindowHandleKind) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for RawWindowHandleKind

Source§

fn eq(&self, other: &RawWindowHandleKind) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for RawWindowHandleKind

Source§

fn partial_cmp(&self, other: &RawWindowHandleKind) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Copy for RawWindowHandleKind

Source§

impl Eq for RawWindowHandleKind

Source§

impl StructuralPartialEq for RawWindowHandleKind

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.