pub struct Scheduled<F: Fn() + Send + 'static> { /* private fields */ }
Expand description
A built task ready to be run by a runner.
Trait Implementations§
Auto Trait Implementations§
impl<F> Freeze for Scheduled<F>where
F: Freeze,
impl<F> RefUnwindSafe for Scheduled<F>where
F: RefUnwindSafe,
impl<F> Send for Scheduled<F>
impl<F> Sync for Scheduled<F>where
F: Sync,
impl<F> Unpin for Scheduled<F>where
F: Unpin,
impl<F> UnwindSafe for Scheduled<F>where
F: 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