pub struct SendFuture { /* private fields */ }Expand description
Future that completes when a send finishes.
Future that awaits send completion. The SQE was already submitted eagerly
by ConnCtx::send — this future only waits for the CQE result.
No data stored in the future. No allocation.
Trait Implementations§
Source§impl Drop for SendFuture
impl Drop for SendFuture
Source§impl Future for SendFuture
impl Future for SendFuture
Auto Trait Implementations§
impl Freeze for SendFuture
impl RefUnwindSafe for SendFuture
impl Send for SendFuture
impl Sync for SendFuture
impl Unpin for SendFuture
impl UnsafeUnpin for SendFuture
impl UnwindSafe for SendFuture
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