#[non_exhaustive]pub enum WindowHandler {
AppKit(AppKitWindowHandler),
}
Expand description
Window handler.
The window handler provides raw pointers for native system windows.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
AppKit(AppKitWindowHandler)
Window handler implementation for AppKit.
Trait Implementations§
Source§impl Clone for WindowHandler
impl Clone for WindowHandler
Source§fn clone(&self) -> WindowHandler
fn clone(&self) -> WindowHandler
Returns a copy 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 WindowHandler
impl Debug for WindowHandler
Source§impl Hash for WindowHandler
impl Hash for WindowHandler
Source§impl PartialEq for WindowHandler
impl PartialEq for WindowHandler
impl Copy for WindowHandler
impl Eq for WindowHandler
impl StructuralPartialEq for WindowHandler
Auto Trait Implementations§
impl Freeze for WindowHandler
impl RefUnwindSafe for WindowHandler
impl !Send for WindowHandler
impl !Sync for WindowHandler
impl Unpin for WindowHandler
impl UnwindSafe for WindowHandler
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