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

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

Read buffer.

Methods

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

[src]

Makes a new ReadBuf instance.

[src]

Returns the number of filled bytes in the buffer.

[src]

Returns the free space of the buffer.

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

[src]

Returns the capacity of the buffer.

[src]

Returns true if the buffer is empty, otherwise false.

[src]

Returns true if the buffer is full, otherwise false.

[src]

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

[src]

Returns a mutable reference to the StreamState instance.

[src]

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 W
[src]

Returns a reference to the inner bytes of the buffer.

Important traits for &'a mut W
[src]

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

[src]

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

Trait Implementations

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

[src]

Formats the value using the given formatter. Read more

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

[src]

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

[src]

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

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

1.0.0
[src]

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

1.0.0
[src]

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

1.6.0
[src]

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

Important traits for &'a mut W
1.0.0
[src]

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

Important traits for Bytes<R>
1.0.0
[src]

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

Important traits for Chars<R>
[src]

🔬 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>
1.0.0
[src]

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

Important traits for Take<T>
1.0.0
[src]

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