Struct AsyncMapReader

Source
pub struct AsyncMapReader<'a, R> { /* private fields */ }
Expand description

A wrapper around an AsyncRead that allows for data processing before the actual I/O operation.

This struct buffers the data read from the underlying reader and applies a mapping function to the data before returning it. It is designed to optimize reads by using a buffer of a specified size (default is 8KB).

The buffer size also acts as a threshold for the length of data passed to the mapping function, and will be gauranteed to be equal the capacity of the underlying buffer, until the last read operation, where it may be smaller.

Implementations§

Source§

impl<'a, R> AsyncMapReader<'a, R>
where R: AsyncRead,

Source

pub fn new(reader: R, process_fn: impl MapReadFn + 'a) -> Self

Create a new wrapper around an async reader with a processing function

Source

pub fn with_capacity( reader: R, process_fn: impl MapReadFn + 'a, capacity: usize, ) -> Self

Create a new wrapper with a specific initial buffer capacity

Source

pub fn into_inner(self) -> R

Consume the wrapper and return the inner reader

Trait Implementations§

Source§

impl<'a, R: AsyncRead> AsyncBufRead for AsyncMapReader<'a, R>

Source§

fn poll_fill_buf( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<&[u8]>>

Attempt to return the contents of the internal buffer, filling it with more data from the inner reader if it is empty. Read more
Source§

fn consume(self: Pin<&mut Self>, amt: usize)

Tells this buffer that amt bytes have been consumed from the buffer, so they should no longer be returned in calls to poll_read. Read more
Source§

impl<'a, R> AsyncRead for AsyncMapReader<'a, R>
where R: AsyncRead,

Source§

fn poll_read( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &mut [u8], ) -> Poll<Result<usize>>

Attempt to read from the AsyncRead into buf. Read more
Source§

fn poll_read_vectored( self: Pin<&mut Self>, cx: &mut Context<'_>, bufs: &mut [IoSliceMut<'_>], ) -> Poll<Result<usize, Error>>

Attempt to read from the AsyncRead into bufs using vectored IO operations. Read more
Source§

impl<'__pin, 'a, R> Unpin for AsyncMapReader<'a, R>
where PinnedFieldsOf<__Origin<'__pin, 'a, R>>: Unpin,

Auto Trait Implementations§

§

impl<'a, R> Freeze for AsyncMapReader<'a, R>
where R: Freeze,

§

impl<'a, R> !RefUnwindSafe for AsyncMapReader<'a, R>

§

impl<'a, R> !Send for AsyncMapReader<'a, R>

§

impl<'a, R> !Sync for AsyncMapReader<'a, R>

§

impl<'a, R> !UnwindSafe for AsyncMapReader<'a, R>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<R> AsyncBufReadExt for R
where R: AsyncBufRead + ?Sized,

Source§

fn fill_buf(&mut self) -> FillBuf<'_, Self>
where Self: Unpin,

Returns the contents of the internal buffer, filling it with more data if empty. Read more
Source§

fn consume(&mut self, amt: usize)
where Self: Unpin,

Consumes amt buffered bytes. Read more
Source§

fn read_until<'a>( &'a mut self, byte: u8, buf: &'a mut Vec<u8>, ) -> ReadUntilFuture<'a, Self>
where Self: Unpin,

Reads all bytes and appends them into buf until the delimiter byte or EOF is found. Read more
Source§

fn read_line<'a>(&'a mut self, buf: &'a mut String) -> ReadLineFuture<'a, Self>
where Self: Unpin,

Reads all bytes and appends them into buf until a newline (the 0xA byte) or EOF is found. Read more
Source§

fn lines(self) -> Lines<Self>
where Self: Sized,

Returns a stream over the lines of this byte stream. Read more
Source§

fn split(self, byte: u8) -> Split<Self>
where Self: Sized,

Returns a stream over the contents of this reader split on the specified byte. Read more
Source§

impl<'a, R> AsyncMapRead<'a, R> for R
where R: AsyncRead,

Source§

fn map_with_capacity( self, f: impl MapReadFn + 'a, capacity: usize, ) -> AsyncMapReader<'a, R>

Maps the underlying reader to an AsyncMapReader using the provided mapping function and a specified buffer capacity. Read more
Source§

fn map(self, f: impl MapReadFn + 'a) -> AsyncMapReader<'a, R>
where Self: Sized,

Maps the underlying reader to an AsyncMapReader using the provided mapping function. This function uses a default buffer size (8KB) for the internal buffer.
Source§

impl<R> AsyncReadExt for R
where R: AsyncRead + ?Sized,

Source§

fn read<'a>(&'a mut self, buf: &'a mut [u8]) -> ReadFuture<'a, Self>
where Self: Unpin,

Reads some bytes from the byte stream. Read more
Source§

fn read_vectored<'a>( &'a mut self, bufs: &'a mut [IoSliceMut<'a>], ) -> ReadVectoredFuture<'a, Self>
where Self: Unpin,

Like read(), except it reads into a slice of buffers. Read more
Source§

fn read_to_end<'a>( &'a mut self, buf: &'a mut Vec<u8>, ) -> ReadToEndFuture<'a, Self>
where Self: Unpin,

Reads the entire contents and appends them to a Vec. Read more
Source§

fn read_to_string<'a>( &'a mut self, buf: &'a mut String, ) -> ReadToStringFuture<'a, Self>
where Self: Unpin,

Reads the entire contents and appends them to a String. Read more
Source§

fn read_exact<'a>(&'a mut self, buf: &'a mut [u8]) -> ReadExactFuture<'a, Self>
where Self: Unpin,

Reads the exact number of bytes required to fill buf. Read more
Source§

fn take(self, limit: u64) -> Take<Self>
where Self: Sized,

Creates an adapter which will read at most limit bytes from it. Read more
Source§

fn bytes(self) -> Bytes<Self>
where Self: Sized,

Converts this AsyncRead into a Stream of bytes. Read more
Source§

fn chain<R>(self, next: R) -> Chain<Self, R>
where R: AsyncRead, Self: Sized,

Creates an adapter which will chain this stream with another. Read more
Source§

fn boxed_reader<'a>(self) -> Pin<Box<dyn AsyncRead + Send + 'a>>
where Self: Sized + Send + 'a,

Boxes the reader and changes its type to dyn AsyncRead + Send + 'a. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.