pub struct Time<Effect, Event> { /* private fields */ }
Implementations§
Source§impl<Effect, Event> Time<Effect, Event>
impl<Effect, Event> Time<Effect, Event>
Sourcepub fn now() -> RequestBuilder<Effect, Event, impl Future<Output = SystemTime>>
pub fn now() -> RequestBuilder<Effect, Event, impl Future<Output = SystemTime>>
Ask for the current wall-clock time.
Sourcepub fn notify_at(
system_time: SystemTime,
) -> (RequestBuilder<Effect, Event, impl Future<Output = TimerOutcome>>, TimerHandle)
pub fn notify_at( system_time: SystemTime, ) -> (RequestBuilder<Effect, Event, impl Future<Output = TimerOutcome>>, TimerHandle)
Ask to receive a notification when the specified
SystemTime
has arrived.
Sourcepub fn notify_after(
duration: Duration,
) -> (RequestBuilder<Effect, Event, impl Future<Output = TimerOutcome>>, TimerHandle)
pub fn notify_after( duration: Duration, ) -> (RequestBuilder<Effect, Event, impl Future<Output = TimerOutcome>>, TimerHandle)
Ask to receive a notification after the specified
Duration
has elapsed.
Auto Trait Implementations§
impl<Effect, Event> Freeze for Time<Effect, Event>
impl<Effect, Event> RefUnwindSafe for Time<Effect, Event>where
Effect: RefUnwindSafe,
Event: RefUnwindSafe,
impl<Effect, Event> Send for Time<Effect, Event>
impl<Effect, Event> Sync for Time<Effect, Event>
impl<Effect, Event> Unpin for Time<Effect, Event>
impl<Effect, Event> UnwindSafe for Time<Effect, Event>where
Effect: UnwindSafe,
Event: UnwindSafe,
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