[−][src]Struct seek_bufread::BufReader
The BufReader
struct adds buffering to any reader.
It can be excessively inefficient to work directly with a Read
instance.
For example, every call to read
on TcpStream
results in a system call.
A BufReader
performs large, infrequent reads on the underlying Read
and maintains an in-memory buffer of the results.
Examples
use std::io::prelude::*; use std::fs::File; use seek_bufread::BufReader; let mut f = try!(File::open("log.txt")); let mut reader = BufReader::new(f); let mut line = String::new(); let len = try!(reader.read_line(&mut line)); println!("First line is {} bytes long", len);
Implementations
impl<R: Read + Seek> BufReader<R>
[src]
pub fn new(inner: R) -> BufReader<R>
[src]
Creates a new BufReader
with a default buffer capacity (8192 bytes).
Examples
use std::fs::File; use seek_bufread::BufReader; let mut f = try!(File::open("log.txt")); let mut reader = BufReader::new(f);
pub fn with_capacity(cap: usize, inner: R) -> BufReader<R>
[src]
Creates a new BufReader
with the specified buffer capacity.
Examples
Creating a buffer with ten bytes of capacity:
use std::fs::File; use seek_bufread::BufReader; let mut f = try!(File::open("log.txt")); let mut reader = BufReader::with_capacity(10, f);
pub fn position(&self) -> u64
[src]
Returns the absolute file pointer position.
pub fn capacity(&self) -> usize
[src]
Returns the total buffer capacity.
pub fn available(&self) -> usize
[src]
Returns the current number of remaining bytes available in the buffer.
pub fn into_inner(self) -> Result<R>
[src]
Consumes self
, synchronizes the inner reader position and returns the inner reader.
Trait Implementations
impl<R: Read> BufRead for BufReader<R>
[src]
fn fill_buf(&mut self) -> Result<&[u8]>
[src]
fn consume(&mut self, amt: usize)
[src]
fn read_until(&mut self, byte: u8, buf: &mut Vec<u8>) -> Result<usize, Error>
1.0.0[src]
fn read_line(&mut self, buf: &mut String) -> Result<usize, Error>
1.0.0[src]
fn split(self, byte: u8) -> Split<Self>
1.0.0[src]
fn lines(self) -> Lines<Self>
1.0.0[src]
impl<R> Debug for BufReader<R> where
R: Debug + Read + Seek,
[src]
R: Debug + Read + Seek,
impl<R: Read> Read for BufReader<R>
[src]
fn read(&mut self, buf: &mut [u8]) -> Result<usize>
[src]
Reads the next available bytes from buffer or inner stream. Doesn't guarantee the whole buffer is filled. Returns number of read bytes.
fn read_vectored(&mut self, bufs: &mut [IoSliceMut]) -> Result<usize, Error>
1.36.0[src]
fn is_read_vectored(&self) -> bool
[src]
unsafe fn initializer(&self) -> Initializer
[src]
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
1.0.0[src]
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
1.0.0[src]
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
1.6.0[src]
fn by_ref(&mut self) -> &mut Self
1.0.0[src]
fn bytes(self) -> Bytes<Self>
1.0.0[src]
fn chain<R>(self, next: R) -> Chain<Self, R> where
R: Read,
1.0.0[src]
R: Read,
fn take(self, limit: u64) -> Take<Self>
1.0.0[src]
impl<R: Read + Seek> Seek for BufReader<R>
[src]
fn seek(&mut self, pos: SeekFrom) -> Result<u64>
[src]
Seek to an offset, in bytes, in the buffer or the underlying reader.
The position used for seeking with SeekFrom::Current(_)
is the
current position of the underlying reader plus the current position
in the internal buffer.
Calling .unwrap()
immediately after a seek doesn't guarantee
the underlying reader at the same position!
See std::io::Seek
for more details.
fn stream_len(&mut self) -> Result<u64, Error>
[src]
fn stream_position(&mut self) -> Result<u64, Error>
[src]
Auto Trait Implementations
impl<R> RefUnwindSafe for BufReader<R> where
R: RefUnwindSafe,
R: RefUnwindSafe,
impl<R> Send for BufReader<R> where
R: Send,
R: Send,
impl<R> Sync for BufReader<R> where
R: Sync,
R: Sync,
impl<R> Unpin for BufReader<R> where
R: Unpin,
R: Unpin,
impl<R> UnwindSafe for BufReader<R> where
R: UnwindSafe,
R: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,