Struct vmap::io::BufWriter[][src]

pub struct BufWriter<W: Write> { /* fields omitted */ }

The BufWriter adds buffering to any writer using a specialized buffer.

This is very similar std::io::BufWriter, but it uses a Ring for internal the buffer.

Examples

use vmap::io::{BufReader, BufWriter};

let recv = TcpStream::connect(srv.local_addr().unwrap())?;
let send = /* accepted socked */

let mut wr = BufWriter::new(send, 4000).unwrap();
wr.write_all(b"hello\nworld\n")?;
wr.flush()?;

let mut rd = BufReader::new(recv, 4000).unwrap();
let mut line = String::new();
let len = rd.read_line(&mut line)?;
assert_eq!(line, "hello\n");

Implementations

impl<W: Write> BufWriter<W>[src]

pub fn new(inner: W, capacity: usize) -> Result<Self>[src]

Creates a new BufWriter.

pub fn get_ref(&self) -> &W[src]

Gets a reference to the underlying writer.

pub fn get_mut(&mut self) -> &mut W[src]

Gets a mutable reference to the underlying writer.

pub fn into_inner(self) -> Result<W>[src]

Unwraps this BufWriter, returning the underlying writer.

Trait Implementations

impl<W: Write> Drop for BufWriter<W>[src]

impl<W: Write> Write for BufWriter<W>[src]

Auto Trait Implementations

impl<W> RefUnwindSafe for BufWriter<W> where
    W: RefUnwindSafe
[src]

impl<W> !Send for BufWriter<W>[src]

impl<W> !Sync for BufWriter<W>[src]

impl<W> Unpin for BufWriter<W> where
    W: Unpin
[src]

impl<W> UnwindSafe for BufWriter<W> where
    W: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.