Struct thingbuf::mpsc::RecvFuture
source · pub struct RecvFuture<'a, T, R = DefaultRecycle> { /* private fields */ }
Expand description
A Future
that tries to receive a value from a Receiver
.
This type is returned by Receiver::recv
.
This is equivalent to the RecvRefFuture
future, but the value is moved out of
the ThingBuf
after it is received. This means that allocations are not
reused.
Trait Implementations§
source§impl<'a, T, R> Future for RecvFuture<'a, T, R>where
R: Recycle<T>,
impl<'a, T, R> Future for RecvFuture<'a, T, R>where
R: Recycle<T>,
Auto Trait Implementations§
impl<'a, T, R> Freeze for RecvFuture<'a, T, R>
impl<'a, T, R = DefaultRecycle> !RefUnwindSafe for RecvFuture<'a, T, R>
impl<'a, T, R> Send for RecvFuture<'a, T, R>
impl<'a, T, R> Sync for RecvFuture<'a, T, R>
impl<'a, T, R> Unpin for RecvFuture<'a, T, R>
impl<'a, T, R = DefaultRecycle> !UnwindSafe for RecvFuture<'a, T, R>
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
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