pub struct AzaleaApp<WM>{ /* private fields */ }Expand description
Main application state
Implementations§
Source§impl<WM> AzaleaApp<WM>where
WM: AzaleaAppExt,
impl<WM> AzaleaApp<WM>where
WM: AzaleaAppExt,
pub fn new(config: Config<<WM as AzaleaAppExt>::ConfigWrapper>) -> AzaleaApp<WM>
pub fn run(self)
Auto Trait Implementations§
impl<WM> Freeze for AzaleaApp<WM>
impl<WM> !RefUnwindSafe for AzaleaApp<WM>
impl<WM> !Send for AzaleaApp<WM>
impl<WM> !Sync for AzaleaApp<WM>
impl<WM> Unpin for AzaleaApp<WM>where
AzaleaApp<WM>: Sized,
<WM as AzaleaAppExt>::WindowWrapper: Unpin,
<WM as AzaleaAppExt>::ConfigWrapper: Unpin,
impl<WM> !UnwindSafe for AzaleaApp<WM>
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> 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> ⓘ
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