#[non_exhaustive]pub enum RawWindowHandle {
Show 16 variants
UiKit(UiKitWindowHandle),
AppKit(AppKitWindowHandle),
Orbital(OrbitalWindowHandle),
OhosNdk(OhosNdkWindowHandle),
Xlib(XlibWindowHandle),
Xcb(XcbWindowHandle),
Wayland(WaylandWindowHandle),
Drm(DrmWindowHandle),
Gbm(GbmWindowHandle),
Win32(Win32WindowHandle),
WinRt(WinRtWindowHandle),
Web(WebWindowHandle),
WebCanvas(WebCanvasWindowHandle),
WebOffscreenCanvas(WebOffscreenCanvasWindowHandle),
AndroidNdk(AndroidNdkWindowHandle),
Haiku(HaikuWindowHandle),
}
Expand description
A window handle for a particular windowing system.
Each variant contains a struct with fields specific to that windowing system
(e.g. Win32WindowHandle
will include a HWND, WaylandWindowHandle
uses wl_surface,
etc.)
§Variant Availability
Note that all variants are present on all targets (none are disabled behind
#[cfg]
s), but see the “Availability Hints” section on each variant for
some hints on where this variant might be expected.
Note that these “Availability Hints” are not normative. That is to say, a
HasWindowHandle
implementor is completely allowed to return something
unexpected. (For example, it’s legal for someone to return a
RawWindowHandle::Xlib
on macOS, it would just be weird, and probably
requires something like XQuartz be used).
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
UiKit(UiKitWindowHandle)
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.
AppKit(AppKitWindowHandle)
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"
.
Orbital(OrbitalWindowHandle)
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.
OhosNdk(OhosNdkWindowHandle)
A raw window handle for the OpenHarmony OS NDK
§Availability Hints
This variant is used on OpenHarmony OS (target_env = "ohos"
).
Xlib(XlibWindowHandle)
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.
Xcb(XcbWindowHandle)
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.
Wayland(WaylandWindowHandle)
A raw window handle for Wayland.
§Availability Hints
This variant should be expected anywhere Wayland works, which is currently some subset of unix systems.
Drm(DrmWindowHandle)
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
Gbm(GbmWindowHandle)
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.
Win32(Win32WindowHandle)
WinRt(WinRtWindowHandle)
Web(WebWindowHandle)
A raw window handle for the Web.
§Availability Hints
This variant is used on Wasm or asm.js targets when targeting the Web/HTML5.
WebCanvas(WebCanvasWindowHandle)
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.
WebOffscreenCanvas(WebOffscreenCanvasWindowHandle)
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.
AndroidNdk(AndroidNdkWindowHandle)
Haiku(HaikuWindowHandle)
Trait Implementations§
§impl AsRef<RawWindowHandle> for WindowHandle<'_>
impl AsRef<RawWindowHandle> for WindowHandle<'_>
§fn as_ref(&self) -> &RawWindowHandle
fn as_ref(&self) -> &RawWindowHandle
§impl Borrow<RawWindowHandle> for WindowHandle<'_>
impl Borrow<RawWindowHandle> for WindowHandle<'_>
§fn borrow(&self) -> &RawWindowHandle
fn borrow(&self) -> &RawWindowHandle
§impl Clone for RawWindowHandle
impl Clone for RawWindowHandle
§fn clone(&self) -> RawWindowHandle
fn clone(&self) -> RawWindowHandle
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more§impl Debug for RawWindowHandle
impl Debug for RawWindowHandle
§impl From<AndroidNdkWindowHandle> for RawWindowHandle
impl From<AndroidNdkWindowHandle> for RawWindowHandle
§fn from(value: AndroidNdkWindowHandle) -> RawWindowHandle
fn from(value: AndroidNdkWindowHandle) -> RawWindowHandle
§impl From<AppKitWindowHandle> for RawWindowHandle
impl From<AppKitWindowHandle> for RawWindowHandle
§fn from(value: AppKitWindowHandle) -> RawWindowHandle
fn from(value: AppKitWindowHandle) -> RawWindowHandle
§impl From<DrmWindowHandle> for RawWindowHandle
impl From<DrmWindowHandle> for RawWindowHandle
§fn from(value: DrmWindowHandle) -> RawWindowHandle
fn from(value: DrmWindowHandle) -> RawWindowHandle
§impl From<GbmWindowHandle> for RawWindowHandle
impl From<GbmWindowHandle> for RawWindowHandle
§fn from(value: GbmWindowHandle) -> RawWindowHandle
fn from(value: GbmWindowHandle) -> RawWindowHandle
§impl From<HaikuWindowHandle> for RawWindowHandle
impl From<HaikuWindowHandle> for RawWindowHandle
§fn from(value: HaikuWindowHandle) -> RawWindowHandle
fn from(value: HaikuWindowHandle) -> RawWindowHandle
§impl From<OhosNdkWindowHandle> for RawWindowHandle
impl From<OhosNdkWindowHandle> for RawWindowHandle
§fn from(value: OhosNdkWindowHandle) -> RawWindowHandle
fn from(value: OhosNdkWindowHandle) -> RawWindowHandle
§impl From<OrbitalWindowHandle> for RawWindowHandle
impl From<OrbitalWindowHandle> for RawWindowHandle
§fn from(value: OrbitalWindowHandle) -> RawWindowHandle
fn from(value: OrbitalWindowHandle) -> RawWindowHandle
§impl From<UiKitWindowHandle> for RawWindowHandle
impl From<UiKitWindowHandle> for RawWindowHandle
§fn from(value: UiKitWindowHandle) -> RawWindowHandle
fn from(value: UiKitWindowHandle) -> RawWindowHandle
§impl From<WaylandWindowHandle> for RawWindowHandle
impl From<WaylandWindowHandle> for RawWindowHandle
§fn from(value: WaylandWindowHandle) -> RawWindowHandle
fn from(value: WaylandWindowHandle) -> RawWindowHandle
§impl From<WebCanvasWindowHandle> for RawWindowHandle
impl From<WebCanvasWindowHandle> for RawWindowHandle
§fn from(value: WebCanvasWindowHandle) -> RawWindowHandle
fn from(value: WebCanvasWindowHandle) -> RawWindowHandle
§impl From<WebOffscreenCanvasWindowHandle> for RawWindowHandle
impl From<WebOffscreenCanvasWindowHandle> for RawWindowHandle
§fn from(value: WebOffscreenCanvasWindowHandle) -> RawWindowHandle
fn from(value: WebOffscreenCanvasWindowHandle) -> RawWindowHandle
§impl From<WebWindowHandle> for RawWindowHandle
impl From<WebWindowHandle> for RawWindowHandle
§fn from(value: WebWindowHandle) -> RawWindowHandle
fn from(value: WebWindowHandle) -> RawWindowHandle
§impl From<Win32WindowHandle> for RawWindowHandle
impl From<Win32WindowHandle> for RawWindowHandle
§fn from(value: Win32WindowHandle) -> RawWindowHandle
fn from(value: Win32WindowHandle) -> RawWindowHandle
§impl From<WinRtWindowHandle> for RawWindowHandle
impl From<WinRtWindowHandle> for RawWindowHandle
§fn from(value: WinRtWindowHandle) -> RawWindowHandle
fn from(value: WinRtWindowHandle) -> RawWindowHandle
§impl From<WindowHandle<'_>> for RawWindowHandle
impl From<WindowHandle<'_>> for RawWindowHandle
§fn from(handle: WindowHandle<'_>) -> RawWindowHandle
fn from(handle: WindowHandle<'_>) -> RawWindowHandle
§impl From<XcbWindowHandle> for RawWindowHandle
impl From<XcbWindowHandle> for RawWindowHandle
§fn from(value: XcbWindowHandle) -> RawWindowHandle
fn from(value: XcbWindowHandle) -> RawWindowHandle
§impl From<XlibWindowHandle> for RawWindowHandle
impl From<XlibWindowHandle> for RawWindowHandle
§fn from(value: XlibWindowHandle) -> RawWindowHandle
fn from(value: XlibWindowHandle) -> RawWindowHandle
§impl Hash for RawWindowHandle
impl Hash for RawWindowHandle
§impl PartialEq for RawWindowHandle
impl PartialEq for RawWindowHandle
§fn eq(&self, other: &RawWindowHandle) -> bool
fn eq(&self, other: &RawWindowHandle) -> bool
self
and other
values to be equal, and is used
by ==
.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
source§impl<T> CheckedAs for T
impl<T> CheckedAs for T
source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.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
key
and return true
if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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> ⓘ
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> ⓘ
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 moresource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request