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 */ }
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<F> IntoFuture for F where
F: Future,
[src]
impl<F> IntoFuture for F where
F: Future,
[src]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
🔬 This is a nightly-only experimental API. (
into_future
)Which kind of future are we turning this into?