Struct async_channel::Recv [−][src]
#[must_use = "futures do nothing unless .awaited"]pub struct Recv<'a, T> { /* fields omitted */ }
A future returned by Receiver::recv()
.
Trait Implementations
Auto Trait Implementations
impl<'a, T> RefUnwindSafe for Recv<'a, T>
impl<'a, T> Send for Recv<'a, T> where
T: Send,
T: Send,
impl<'a, T> Sync for Recv<'a, T> where
T: Send,
T: Send,
impl<'a, T> UnwindSafe for Recv<'a, T>
Blanket Implementations
impl<F> IntoFuture for F where
F: Future,
[src]
impl<F> IntoFuture for F where
F: Future,
[src]type Output = <F as Future>::Output
🔬 This is a nightly-only experimental API. (
into_future
)The output that the future will produce on completion.
type Future = F
🔬 This is a nightly-only experimental API. (
into_future
)Which kind of future are we turning this into?