pub struct Ready<T>(/* private fields */);Expand description
A future that is immediately ready with a value.
This struct is created by ready(). See its
documentation for more.
Implementations§
Trait Implementations§
1.48.0 · Source§impl<T: Clone> Clone for Ready<T>
impl<T: Clone> Clone for Ready<T>
Source§fn clone(&self) -> Ready<T> ⓘ
fn clone(&self) -> Ready<T> ⓘ
This item is validated for IEC 61508 (SIL 2) and ISO 26262 (ASIL B).
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)where
Self:,
fn clone_from(&mut self, source: &Self)where
Self:,
This item is validated for IEC 61508 (SIL 2) and ISO 26262 (ASIL B).
Performs copy-assignment from
source. Read moreimpl<T> Unpin for Ready<T>
Auto Trait Implementations§
impl<T> Freeze for Ready<T>where
T: Freeze,
impl<T> RefUnwindSafe for Ready<T>where
T: RefUnwindSafe,
impl<T> Send for Ready<T>where
T: Send,
impl<T> Sync for Ready<T>where
T: Sync,
impl<T> UnsafeUnpin for Ready<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for Ready<T>where
T: 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
This item is validated for IEC 61508 (SIL 2) and ISO 26262 (ASIL B).
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere
F: Future,
Source§type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
Source§fn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
This item is validated for IEC 61508 (SIL 2) and ISO 26262 (ASIL B).
Creates a future from a value. Read more