pub struct RunConfig<App, Global, Message, Error>where
App: AppWidget<Global, Message, Error>,
Message: 'static + Send + Debug,
Error: 'static + Send + Debug,{ /* private fields */ }Expand description
Captures some parameters for crate::run_tui().
Implementations§
source§impl<App, Global, Message, Error> RunConfig<App, Global, Message, Error>
impl<App, Global, Message, Error> RunConfig<App, Global, Message, Error>
Trait Implementations§
Auto Trait Implementations§
impl<App, Global, Message, Error> Freeze for RunConfig<App, Global, Message, Error>
impl<App, Global, Message, Error> !RefUnwindSafe for RunConfig<App, Global, Message, Error>
impl<App, Global, Message, Error> !Send for RunConfig<App, Global, Message, Error>
impl<App, Global, Message, Error> !Sync for RunConfig<App, Global, Message, Error>
impl<App, Global, Message, Error> Unpin for RunConfig<App, Global, Message, Error>
impl<App, Global, Message, Error> !UnwindSafe for RunConfig<App, Global, Message, Error>
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
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