usecrate::io::AsyncRead; use futures_core::future::Future; use futures_core::task::{Context, Poll}; use std::io::{self, IoSliceMut}; use std::pin::Pin;
/// Future for the [`read_vectored`](super::AsyncReadExt::read_vectored) method. #[derive(Debug)] #[must_use = "futures do nothing unless you `.await` or poll them"] pubstruct ReadVectored<'a, R: ?Sized> {
reader: &'a mut R,
bufs: &'a mut [IoSliceMut<'a>],
}
impl<R: ?Sized + Unpin> Unpin for ReadVectored<'_, R> {}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.