Struct futures_util::io::WriteAll [−][src]
#[must_use = "futures do nothing unless you `.await` or poll them"]pub struct WriteAll<'a, W: ?Sized> { /* fields omitted */ }
Future for the write_all
method.
Trait Implementations
impl<W: ?Sized + Unpin> Unpin for WriteAll<'_, W>
[src]
Auto Trait Implementations
impl<'a, W: ?Sized> RefUnwindSafe for WriteAll<'a, W> where
W: RefUnwindSafe,
W: RefUnwindSafe,
impl<'a, W: ?Sized> Send for WriteAll<'a, W> where
W: Send,
W: Send,
impl<'a, W: ?Sized> Sync for WriteAll<'a, W> where
W: Sync,
W: Sync,
impl<'a, W> !UnwindSafe for WriteAll<'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?