Struct bytecodec::io::ReadBuf[][src]

pub struct ReadBuf<B> { /* fields omitted */ }

Read buffer.

Methods

impl<B: AsRef<[u8]> + AsMut<[u8]>> ReadBuf<B>
[src]

Makes a new ReadBuf instance.

Returns the number of filled bytes in the buffer.

Returns the free space of the buffer.

Invariant: self.len() + self.room() <= self.capacity()

Returns the capacity of the buffer.

Returns true if the buffer is empty, otherwise false.

Returns true if the buffer is full, otherwise false.

Returns the state of the stream that operated in the last fill() call.

Returns a mutable reference to the StreamState instance.

Fills the read buffer by reading bytes from the given reader.

The fill process continues until one of the following condition is satisfied:

  • The read buffer became full
  • A read operation returned a WouldBlock error
  • The input stream has reached EOS

Important traits for &'a mut R

Returns a reference to the inner bytes of the buffer.

Important traits for &'a mut R

Returns a mutable reference to the inner bytes of the buffer.

Takes ownership of ReadBuf and returns the inner bytes of the buffer.

Trait Implementations

impl<B: Debug> Debug for ReadBuf<B>
[src]

Formats the value using the given formatter. Read more

impl<B: AsRef<[u8]> + AsMut<[u8]>> Read for ReadBuf<B>
[src]

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more

🔬 This is a nightly-only experimental API. (read_initializer)

Determines if this Reader can work with buffers of uninitialized memory. Read more

Read all bytes until EOF in this source, placing them into buf. Read more

Read all bytes until EOF in this source, appending them to buf. Read more

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

Important traits for &'a mut R

Creates a "by reference" adaptor for this instance of Read. Read more

Important traits for Bytes<R>

Transforms this Read instance to an [Iterator] over its bytes. Read more

Important traits for Chars<R>

Deprecated since 1.27.0

: Use str::from_utf8 instead: https://doc.rust-lang.org/nightly/std/str/struct.Utf8Error.html#examples

🔬 This is a nightly-only experimental API. (io)

the semantics of a partial read/write of where errors happen is currently unclear and may change

Transforms this Read instance to an [Iterator] over [char]s. Read more

Important traits for Chain<T, U>

Creates an adaptor which will chain this stream with another. Read more

Important traits for Take<T>

Creates an adaptor which will read at most limit bytes from it. Read more

Auto Trait Implementations

impl<B> Send for ReadBuf<B> where
    B: Send

impl<B> Sync for ReadBuf<B> where
    B: Sync