Struct futures_util::io::WriteVectored [−][src]
#[must_use = "futures do nothing unless you `.await` or poll them"]pub struct WriteVectored<'a, W: ?Sized> { /* fields omitted */ }
This is supported on crate feature
io only.Expand description
Future for the write_vectored method.
Trait Implementations
impl<'a, W: Debug + ?Sized> Debug for WriteVectored<'a, W>[src]
impl<'a, W: Debug + ?Sized> Debug for WriteVectored<'a, W>[src]impl<W: AsyncWrite + ?Sized + Unpin> Future for WriteVectored<'_, W>[src]
impl<W: AsyncWrite + ?Sized + Unpin> Future for WriteVectored<'_, W>[src]impl<W: ?Sized + Unpin> Unpin for WriteVectored<'_, W>[src]
Auto Trait Implementations
impl<'a, W: ?Sized> RefUnwindSafe for WriteVectored<'a, W> where
W: RefUnwindSafe,
W: RefUnwindSafe,
impl<'a, W: ?Sized> Send for WriteVectored<'a, W> where
W: Send,
W: Send,
impl<'a, W: ?Sized> Sync for WriteVectored<'a, W> where
W: Sync,
W: Sync,
impl<'a, W> !UnwindSafe for WriteVectored<'a, W>
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<F> IntoFuture for F where
F: Future, [src]
impl<F> IntoFuture for F where
F: Future, [src]type Output = <F as Future>::Output
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
type Future = F🔬 This is a nightly-only experimental API. (
into_future)Which kind of future are we turning this into?
pub fn into_future(self) -> <F as IntoFuture>::Future[src]
pub fn into_future(self) -> <F as IntoFuture>::Future[src]🔬 This is a nightly-only experimental API. (
into_future)Creates a future from a value.