Struct async_unsync::oneshot::Receiver
source · pub struct Receiver<T> { /* private fields */ }
Expand description
An owning handle for receiving elements through a split OneshotChannel
.
This receiver implements Future
and can be awaited directly:
use async_unsync::oneshot;
let (tx, rx) = oneshot::channel().into_split();
tx.send(()).unwrap();
let _ = rx.await;
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> !RefUnwindSafe for Receiver<T>
impl<T> !Send for Receiver<T>
impl<T> !Sync for Receiver<T>
impl<T> Unpin for Receiver<T>
impl<T> !UnwindSafe for Receiver<T>
Blanket Implementations§
source§impl<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere F: Future,
§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
Creates a future from a value. Read more