Struct buffered_reader::EOF [−][src]
pub struct EOF<C> { /* fields omitted */ }
Expand description
Always returns EOF.
Implementations
Trait Implementations
Returns a reference to the internal buffer. Read more
Ensures that the internal buffer has at least amount
bytes
of data, and returns it. Read more
Consumes some of the data. Read more
A convenience function that combines data()
and consume()
. Read more
A convenience function that effectively combines data_hard()
and consume()
. Read more
Returns the underlying reader, if any. Read more
Returns a mutable reference to the inner BufferedReader
, if
any. Read more
Returns a reference to the inner BufferedReader
, if any.
Sets the BufferedReader
’s cookie and returns the old value.
Returns a reference to the BufferedReader
’s cookie.
Returns a mutable reference to the BufferedReader
’s cookie.
Like data()
, but returns an error if there is not at least
amount
bytes available. Read more
Returns all of the data until EOF. Like data()
, this does not
actually consume the data that is read. Read more
Checks whether this reader is consummated. Read more
A convenience function for reading a 16-bit unsigned integer in big endian format. Read more
A convenience function for reading a 32-bit unsigned integer in big endian format. Read more
Reads until either terminal
is encountered or EOF. Read more
Discards the input until one of the bytes in terminals is encountered. Read more
Discards the input until one of the bytes in terminals
is
encountered. Read more
Like data_consume_hard()
, but returns the data in a
caller-owned buffer. Read more
Like steal()
, but instead of stealing a fixed number of
bytes, steals all of the data until the end of file. Read more
Like steal_eof()
, but instead of returning the data, the
data is discarded. Read more
A helpful debugging aid to pretty print a Buffered Reader stack. Read more
Boxes the reader.
Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more
Like read
, except that it reads into a slice of buffers. Read more
can_vector
)Determines if this Read
er has an efficient read_vectored
implementation. Read more
read_initializer
)Determines if this Read
er 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
Creates a “by reference” adapter for this instance of Read
. Read more
Creates an adapter which will chain this stream with another. Read more