Struct WriteAllVectored

#[must_use = "futures do nothing unless you `.await` or poll them"]
pub struct WriteAllVectored<'a, 'b, W: ?Sized> { /* private fields */ }

A future that writes all data from multiple buffers to a writer.

Trait Implementations

impl<'__pin, 'a, 'b, W: ?Sized> Unpin for WriteAllVectored<'a, 'b, W> where PinnedFieldsOf<__Origin<'__pin, 'a, 'b, W>>: Unpin,

impl<'a, 'b, W: Debug + ?Sized> Debug for WriteAllVectored<'a, 'b, W>

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl<W> Future for WriteAllVectored<'_, '_, W> where W: AsyncWrite + Unpin + ?Sized,

type Output = Result<(), Error>;
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>

Auto Trait Implementations

impl<'a, 'b, W> !UnsafeUnpin for WriteAllVectored<'a, 'b, W>

impl<'a, 'b, W> !UnwindSafe for WriteAllVectored<'a, 'b, W>

impl<'a, 'b, W> Freeze for WriteAllVectored<'a, 'b, W> where &'a mut W: Freeze, W: ?Sized,

impl<'a, 'b, W> RefUnwindSafe for WriteAllVectored<'a, 'b, W> where &'a mut W: RefUnwindSafe, W: ?Sized,

impl<'a, 'b, W> Send for WriteAllVectored<'a, 'b, W> where &'a mut W: Send, W: ?Sized,

impl<'a, 'b, W> Sync for WriteAllVectored<'a, 'b, W> where &'a mut W: Sync, W: ?Sized,

Blanket Implementations

impl<F> IntoFuture for WriteAllVectored<'a, 'b, W> where F: Future,

type Output = <F as Future>::Output;
type IntoFuture = F;
fn into_future(self) -> <F as IntoFuture>::IntoFuture

impl<F, T, E> TryFuture for WriteAllVectored<'a, 'b, W> where F: Future<Output = Result<T, E>> + ?Sized,

type Ok = T;
type Error = E;
fn try_poll(self: Pin<&mut F>, cx: &mut Context<'_>) -> Poll<<F as Future>::Output>

impl<T> Any for WriteAllVectored<'a, 'b, W> where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for WriteAllVectored<'a, 'b, W> where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for WriteAllVectored<'a, 'b, W> where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> From<T> for WriteAllVectored<'a, 'b, W>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> FutureExt for WriteAllVectored<'a, 'b, W> where T: Future + ?Sized,

impl<T, U> Into<U> for WriteAllVectored<'a, 'b, W> where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for WriteAllVectored<'a, 'b, W> where U: Into<T>,

type Error = Infallible;
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto<U> for WriteAllVectored<'a, 'b, W> where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>