pub enum AsyncWindowKind {
Window(AsyncWindow),
InnerWindow(AsyncInnerWindow),
}Expand description
Represents AsyncWindow or AsyncInnerWindow
Variants§
Window(AsyncWindow)
InnerWindow(AsyncInnerWindow)
Trait Implementations§
Source§impl Clone for AsyncWindowKind
impl Clone for AsyncWindowKind
Source§fn clone(&self) -> AsyncWindowKind
fn clone(&self) -> AsyncWindowKind
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 AsyncWindowKind
impl Debug for AsyncWindowKind
Source§impl IsWindow for AsyncWindowKind
impl IsWindow for AsyncWindowKind
fn window_handle(&self) -> WindowHandle
Source§impl PartialEq<AsyncInnerWindow> for AsyncWindowKind
impl PartialEq<AsyncInnerWindow> for AsyncWindowKind
Source§impl PartialEq<AsyncWindow> for AsyncWindowKind
impl PartialEq<AsyncWindow> for AsyncWindowKind
Source§impl PartialEq<AsyncWindowKind> for AsyncInnerWindow
impl PartialEq<AsyncWindowKind> for AsyncInnerWindow
Source§impl PartialEq<AsyncWindowKind> for AsyncWindow
impl PartialEq<AsyncWindowKind> for AsyncWindow
Source§impl PartialEq for AsyncWindowKind
impl PartialEq for AsyncWindowKind
impl Eq for AsyncWindowKind
impl StructuralPartialEq for AsyncWindowKind
Auto Trait Implementations§
impl Freeze for AsyncWindowKind
impl RefUnwindSafe for AsyncWindowKind
impl Send for AsyncWindowKind
impl Sync for AsyncWindowKind
impl Unpin for AsyncWindowKind
impl UnwindSafe for AsyncWindowKind
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