pub struct SyncAppRunner {
pub sleep_time: Option<Duration>,
}Fields§
§sleep_time: Option<Duration>Implementations§
Source§impl SyncAppRunner
impl SyncAppRunner
pub fn new() -> Self
pub fn with_sleep_time(value: Duration) -> Self
Trait Implementations§
Source§impl<'a, 'b> BackendAppRunner<'a, 'b, ()> for SyncAppRunner
impl<'a, 'b> BackendAppRunner<'a, 'b, ()> for SyncAppRunner
Source§impl Default for SyncAppRunner
impl Default for SyncAppRunner
Source§fn default() -> SyncAppRunner
fn default() -> SyncAppRunner
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SyncAppRunner
impl RefUnwindSafe for SyncAppRunner
impl Send for SyncAppRunner
impl Sync for SyncAppRunner
impl Unpin for SyncAppRunner
impl UnwindSafe for SyncAppRunner
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> TryDefault for Twhere
T: Default,
impl<T> TryDefault for Twhere
T: Default,
Source§fn try_default() -> Result<T, String>
fn try_default() -> Result<T, String>
Tries to create the default.
Source§fn unwrap_default() -> Self
fn unwrap_default() -> Self
Calls
try_default and panics on an error case.