Struct buf_redux::BufReader [−][src]
pub struct BufReader<R> { /* fields omitted */ }A drop-in replacement for std::io::BufReader with more functionality.
Original method names/signatures and implemented traits are left untouched, making replacement as simple as swapping the import of the type.
Methods
impl<R> BufReader<R>[src]
impl<R> BufReader<R>pub fn new(inner: R) -> Self[src]
pub fn new(inner: R) -> SelfCreate a new BufReader wrapping inner, with a buffer of a
default capacity.
pub fn with_capacity(cap: usize, inner: R) -> Self[src]
pub fn with_capacity(cap: usize, inner: R) -> SelfCreate a new BufReader wrapping inner with a capacity
of at least cap bytes.
The actual capacity of the buffer may vary based on implementation details of the buffer's allocator.
pub fn make_room(&mut self)[src]
pub fn make_room(&mut self)Move data to the start of the buffer, making room at the end for more reading.
pub fn grow(&mut self, additional: usize)[src]
pub fn grow(&mut self, additional: usize)Grow the internal buffer by at least additional bytes. May not be
quite exact due to implementation details of the buffer's allocator.
##Note This should not be called frequently as each call will incur a reallocation and a zeroing of the new memory.
pub fn get_buf(&self) -> &[u8][src]
pub fn get_buf(&self) -> &[u8]Get the section of the buffer containing valid data; may be empty.
Call .consume() to remove bytes from the beginning of this section.
pub fn available(&self) -> usize[src]
pub fn available(&self) -> usizeGet the current number of bytes available in the buffer.
pub fn capacity(&self) -> usize[src]
pub fn capacity(&self) -> usizeGet the total buffer capacity.
pub fn get_ref(&self) -> &R[src]
pub fn get_ref(&self) -> &RGet an immutable reference to the underlying reader.
pub fn get_mut(&mut self) -> &mut R[src]
pub fn get_mut(&mut self) -> &mut RGet a mutable reference to the underlying reader.
Note
Reading directly from the underlying reader is not recommended, as some data has likely already been moved into the buffer.
pub fn into_inner(self) -> R[src]
pub fn into_inner(self) -> RConsumes self and returns the inner reader only.
pub fn into_inner_with_buf(self) -> (R, Vec<u8>)[src]
pub fn into_inner_with_buf(self) -> (R, Vec<u8>)Consumes self and returns both the underlying reader and the buffer,
with the data moved to the beginning and the length truncated to contain
only valid data.
See also: BufReader::unbuffer()
ⓘImportant traits for Unbuffer<R>pub fn unbuffer(self) -> Unbuffer<R>[src]
pub fn unbuffer(self) -> Unbuffer<R>Consumes self and returns an adapter which implements Read and will
empty the buffer before reading directly from the underlying reader.
impl<R: Read> BufReader<R>[src]
impl<R: Read> BufReader<R>pub fn read_into_buf(&mut self) -> Result<usize>[src]
pub fn read_into_buf(&mut self) -> Result<usize>Unconditionally perform a read into the buffer, calling .make_room()
if appropriate or necessary, as determined by the implementation.
If the read was successful, returns the number of bytes now available in the buffer.
Trait Implementations
impl<R: Read> Read for BufReader<R>[src]
impl<R: Read> Read for BufReader<R>fn read(&mut self, buf: &mut [u8]) -> Result<usize>[src]
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
unsafe fn initializer(&self) -> Initializer[src]
unsafe fn initializer(&self) -> Initializerread_initializer)Determines if this Reader can work with buffers of uninitialized memory. Read more
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>1.0.0[src]
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 more
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>1.0.0[src]
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 more
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>1.6.0[src]
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>Read the exact number of bytes required to fill buf. Read more
fn by_ref(&mut self) -> &mut Self1.0.0[src]
fn by_ref(&mut self) -> &mut SelfCreates a "by reference" adaptor for this instance of Read. Read more
fn bytes(self) -> Bytes<Self>1.0.0[src]
fn bytes(self) -> Bytes<Self>Transforms this Read instance to an [Iterator] over its bytes. Read more
fn chars(self) -> Chars<Self>[src]
fn chars(self) -> Chars<Self>: 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
fn chain<R>(self, next: R) -> Chain<Self, R> where
R: Read, 1.0.0[src]
fn chain<R>(self, next: R) -> Chain<Self, R> where
R: Read, Creates an adaptor which will chain this stream with another. Read more
fn take(self, limit: u64) -> Take<Self>1.0.0[src]
fn take(self, limit: u64) -> Take<Self>Creates an adaptor which will read at most limit bytes from it. Read more
impl<R: Read> BufRead for BufReader<R>[src]
impl<R: Read> BufRead for BufReader<R>fn fill_buf(&mut self) -> Result<&[u8]>[src]
fn fill_buf(&mut self) -> Result<&[u8]>Fills the internal buffer of this object, returning the buffer contents. Read more
fn consume(&mut self, amt: usize)[src]
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 more
fn read_until(&mut self, byte: u8, buf: &mut Vec<u8>) -> Result<usize, Error>1.0.0[src]
fn read_until(&mut self, byte: u8, buf: &mut Vec<u8>) -> Result<usize, Error>Read all bytes into buf until the delimiter byte or EOF is reached. Read more
fn read_line(&mut self, buf: &mut String) -> Result<usize, Error>1.0.0[src]
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 buffer. Read more
fn split(self, byte: u8) -> Split<Self>1.0.0[src]
fn split(self, byte: u8) -> Split<Self>Returns an iterator over the contents of this reader split on the byte byte. Read more
fn lines(self) -> Lines<Self>1.0.0[src]
fn lines(self) -> Lines<Self>Returns an iterator over the lines of this reader. Read more
impl<R> Debug for BufReader<R> where
R: Debug, [src]
impl<R> Debug for BufReader<R> where
R: Debug, fn fmt(&self, fmt: &mut Formatter) -> Result[src]
fn fmt(&self, fmt: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<R: Seek> Seek for BufReader<R>[src]
impl<R: Seek> Seek for BufReader<R>fn seek(&mut self, pos: SeekFrom) -> Result<u64>[src]
fn seek(&mut self, pos: SeekFrom) -> Result<u64>Seek to an offset, in bytes, in the underlying reader.
The position used for seeking with SeekFrom::Current(_) is the
position the underlying reader would be at if the BufReader had no
internal buffer.
Seeking always discards the internal buffer, even if the seek position
would otherwise fall within it. This guarantees that calling
.unwrap() immediately after a seek yields the underlying reader at
the same position.
See std::io::Seek for more details.
Note: In the edge case where you're seeking with SeekFrom::Current(n)
where n minus the internal buffer length underflows an i64, two
seeks will be performed instead of one. If the second seek returns
Err, the underlying reader will be left at the same position it would
have if you seeked to SeekFrom::Current(0).