pub struct SendManyFuture<'a, 'b, T> { /* private fields */ }Expand description
SendManyFuture is a future for sending multiple objects to a channel asynchronously. It must be polled to complete the send operation.
Trait Implementations§
Source§impl<'a, 'b, T: Debug> Debug for SendManyFuture<'a, 'b, T>
impl<'a, 'b, T: Debug> Debug for SendManyFuture<'a, 'b, T>
Source§impl<'a, 'b, T> Future for SendManyFuture<'a, 'b, T>
impl<'a, 'b, T> Future for SendManyFuture<'a, 'b, T>
Auto Trait Implementations§
impl<'a, 'b, T> !Freeze for SendManyFuture<'a, 'b, T>
impl<'a, 'b, T> !RefUnwindSafe for SendManyFuture<'a, 'b, T>
impl<'a, 'b, T> Send for SendManyFuture<'a, 'b, T>where
T: Send,
impl<'a, 'b, T> !Sync for SendManyFuture<'a, 'b, T>
impl<'a, 'b, T> !Unpin for SendManyFuture<'a, 'b, T>
impl<'a, 'b, T> !UnwindSafe for SendManyFuture<'a, 'b, T>
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,
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
Creates a future from a value. Read more