pub struct Counter<D> { /* private fields */ }Expand description
The Counter<D> struct adds byte counting to any reader or writer.
Implementations§
source§impl<D> Counter<D>
impl<D> Counter<D>
sourcepub const fn with_bytes(
reader_bytes: usize,
writer_bytes: usize,
inner: D,
) -> Self
pub const fn with_bytes( reader_bytes: usize, writer_bytes: usize, inner: D, ) -> Self
Creates a new Counter<D> with the specified read/written bytes.
sourcepub const fn total_bytes(&self) -> usize
pub const fn total_bytes(&self) -> usize
Returns the sum of read and written bytes by the underlying reader/writer.
sourcepub const fn reader_bytes(&self) -> usize
pub const fn reader_bytes(&self) -> usize
Returns the total amount of read bytes by the underlying reader.
sourcepub const fn writer_bytes(&self) -> usize
pub const fn writer_bytes(&self) -> usize
Returns the total amount of written bytes by the underlying writer.
sourcepub fn into_inner(self) -> D
pub fn into_inner(self) -> D
Consumes Counter<D> returning the underlying reader/writer.
Trait Implementations§
source§impl<R: AsyncBufRead + Unpin> AsyncBufRead for Counter<R>
Available on crate feature tokio only.
impl<R: AsyncBufRead + Unpin> AsyncBufRead for Counter<R>
Available on crate feature
tokio only.source§impl<R: AsyncBufRead + Unpin> AsyncBufRead for Counter<R>
Available on crate feature futures only.
impl<R: AsyncBufRead + Unpin> AsyncBufRead for Counter<R>
Available on crate feature
futures only.source§impl<R: AsyncRead + Unpin> AsyncRead for Counter<R>
Available on crate feature futures only.
impl<R: AsyncRead + Unpin> AsyncRead for Counter<R>
Available on crate feature
futures only.source§impl<W: AsyncWrite + Unpin> AsyncWrite for Counter<W>
Available on crate feature tokio only.
impl<W: AsyncWrite + Unpin> AsyncWrite for Counter<W>
Available on crate feature
tokio only.source§fn poll_write(
self: Pin<&mut Self>,
ctx: &mut Context<'_>,
buf: &[u8],
) -> Poll<Result<usize>>
fn poll_write( self: Pin<&mut Self>, ctx: &mut Context<'_>, buf: &[u8], ) -> Poll<Result<usize>>
Attempt to write bytes from
buf into the object. Read moresource§fn poll_flush(self: Pin<&mut Self>, ctx: &mut Context<'_>) -> Poll<Result<()>>
fn poll_flush(self: Pin<&mut Self>, ctx: &mut Context<'_>) -> Poll<Result<()>>
Attempts to flush the object, ensuring that any buffered data reach
their destination. Read more
source§fn poll_shutdown(
self: Pin<&mut Self>,
ctx: &mut Context<'_>,
) -> Poll<Result<()>>
fn poll_shutdown( self: Pin<&mut Self>, ctx: &mut Context<'_>, ) -> Poll<Result<()>>
Initiates or attempts to shut down this writer, returning success when
the I/O connection has completely shut down. Read more
source§fn poll_write_vectored(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
bufs: &[IoSlice<'_>],
) -> Poll<Result<usize, Error>>
fn poll_write_vectored( self: Pin<&mut Self>, cx: &mut Context<'_>, bufs: &[IoSlice<'_>], ) -> Poll<Result<usize, Error>>
Like
poll_write, except that it writes from a slice of buffers. Read moresource§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
Determines if this writer has an efficient
poll_write_vectored
implementation. Read moresource§impl<W: AsyncWrite + Unpin> AsyncWrite for Counter<W>
Available on crate feature futures only.
impl<W: AsyncWrite + Unpin> AsyncWrite for Counter<W>
Available on crate feature
futures only.source§fn poll_write(
self: Pin<&mut Self>,
ctx: &mut Context<'_>,
buf: &[u8],
) -> Poll<Result<usize>>
fn poll_write( self: Pin<&mut Self>, ctx: &mut Context<'_>, buf: &[u8], ) -> Poll<Result<usize>>
Attempt to write bytes from
buf into the object. Read moresource§fn poll_flush(self: Pin<&mut Self>, ctx: &mut Context<'_>) -> Poll<Result<()>>
fn poll_flush(self: Pin<&mut Self>, ctx: &mut Context<'_>) -> Poll<Result<()>>
Attempt to flush the object, ensuring that any buffered data reach
their destination. Read more
source§impl<R: BufRead> BufRead for Counter<R>
Available on crate feature std only.
impl<R: BufRead> BufRead for Counter<R>
Available on crate feature
std only.source§fn fill_buf(&mut self) -> Result<&[u8]>
fn fill_buf(&mut self) -> Result<&[u8]>
Returns the contents of the internal buffer, filling it with more data
from the inner reader if it is empty. Read more
source§fn consume(&mut self, amt: usize)
fn consume(&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 read. Read moresource§fn has_data_left(&mut self) -> Result<bool, Error>
fn has_data_left(&mut self) -> Result<bool, Error>
🔬This is a nightly-only experimental API. (
buf_read_has_data_left)Check if the underlying
Read has any data left to be read. Read moresource§fn skip_until(&mut self, byte: u8) -> Result<usize, Error>
fn skip_until(&mut self, byte: u8) -> Result<usize, Error>
🔬This is a nightly-only experimental API. (
bufread_skip_until)Skip all bytes until the delimiter
byte or EOF is reached. Read more1.0.0 · source§fn read_line(&mut self, buf: &mut String) -> Result<usize, Error>
fn read_line(&mut self, buf: &mut String) -> Result<usize, Error>
Read all bytes until a newline (the
0xA byte) is reached, and append
them to the provided String buffer. Read moresource§impl<R: Read> Read for Counter<R>
Available on crate feature std only.
impl<R: Read> Read for Counter<R>
Available on crate feature
std only.source§fn read(&mut self, buf: &mut [u8]) -> Result<usize>
fn read(&mut self, buf: &mut [u8]) -> Result<usize>
Pull some bytes from this source into the specified buffer, returning
how many bytes were read. Read more
1.36.0 · source§fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
Like
read, except that it reads into a slice of buffers. Read moresource§fn is_read_vectored(&self) -> bool
fn is_read_vectored(&self) -> bool
🔬This is a nightly-only experimental API. (
can_vector)1.0.0 · source§fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
Read all bytes until EOF in this source, placing them into
buf. Read more1.0.0 · source§fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
Read all bytes until EOF in this source, appending them to
buf. Read more1.6.0 · source§fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
Read the exact number of bytes required to fill
buf. Read moresource§fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
read_buf)Pull some bytes from this source into the specified buffer. Read more
source§fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
read_buf)Read the exact number of bytes required to fill
cursor. Read more1.0.0 · source§fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
Creates a “by reference” adaptor for this instance of
Read. Read moresource§impl<D: Seek> Seek for Counter<D>
Available on crate feature std only.
impl<D: Seek> Seek for Counter<D>
Available on crate feature
std only.source§fn seek(&mut self, pos: SeekFrom) -> Result<u64>
fn seek(&mut self, pos: SeekFrom) -> Result<u64>
Seek to an offset, in bytes, in a stream. Read more
1.55.0 · source§fn rewind(&mut self) -> Result<(), Error>
fn rewind(&mut self) -> Result<(), Error>
Rewind to the beginning of a stream. Read more
source§fn stream_len(&mut self) -> Result<u64, Error>
fn stream_len(&mut self) -> Result<u64, Error>
🔬This is a nightly-only experimental API. (
seek_stream_len)Returns the length of this stream (in bytes). Read more
source§impl<W: Write> Write for Counter<W>
Available on crate feature std only.
impl<W: Write> Write for Counter<W>
Available on crate feature
std only.source§fn write(&mut self, buf: &[u8]) -> Result<usize>
fn write(&mut self, buf: &[u8]) -> Result<usize>
Write a buffer into this writer, returning how many bytes were written. Read more
source§fn flush(&mut self) -> Result<()>
fn flush(&mut self) -> Result<()>
Flush this output stream, ensuring that all intermediately buffered
contents reach their destination. Read more
source§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
🔬This is a nightly-only experimental API. (
can_vector)1.0.0 · source§fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
Attempts to write an entire buffer into this writer. Read more
source§fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
write_all_vectored)Attempts to write multiple buffers into this writer. Read more
Auto Trait Implementations§
impl<D> Freeze for Counter<D>where
D: Freeze,
impl<D> RefUnwindSafe for Counter<D>where
D: RefUnwindSafe,
impl<D> Send for Counter<D>where
D: Send,
impl<D> Sync for Counter<D>where
D: Sync,
impl<D> Unpin for Counter<D>where
D: Unpin,
impl<D> UnwindSafe for Counter<D>where
D: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more