[−][src]Enum tokio::prelude::Async
Return type of future, indicating whether a value is ready or not.
Variants
Ready(T)
Represents that a value is immediately ready.
NotReady
Represents that a value is not ready yet, but may be so later.
Methods
impl<T> Async<T>
[src]
pub fn map<F, U>(self, f: F) -> Async<U> where
F: FnOnce(T) -> U,
[src]
F: FnOnce(T) -> U,
Change the success value of this Async
with the closure provided
pub fn is_ready(&self) -> bool
[src]
Returns whether this is Async::Ready
pub fn is_not_ready(&self) -> bool
[src]
Returns whether this is Async::NotReady
Trait Implementations
impl<T> PartialEq<Async<T>> for Async<T> where
T: PartialEq<T>,
[src]
T: PartialEq<T>,
impl<T> Copy for Async<T> where
T: Copy,
[src]
T: Copy,
impl<T> Debug for Async<T> where
T: Debug,
[src]
T: Debug,
impl<T> From<T> for Async<T>
[src]
impl<T> Clone for Async<T> where
T: Clone,
[src]
T: Clone,
Auto Trait Implementations
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T> From for T
[src]
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
ⓘImportant traits for &'_ mut Wfn borrow_mut(&mut self) -> &mut T
[src]
ⓘImportant traits for &'_ mut W
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.