Struct dribble::DribbleWriter [] [src]

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

Wrap an implementation of Write, and pass through bytes in small, random-sized chunks when write is called.

use std::io::Write;
use dribble::DribbleWriter;

let input = b"This is my test data";
let mut output = vec!();
{
    let mut dribble = DribbleWriter::new(&mut output);
    dribble.write(input).unwrap();
}
assert_eq!(input as &[u8], &output as &[u8]);        

Methods

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

Create a new DribbleWriter.

Trait Implementations

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

Write a buffer into this object, returning how many bytes were written. Read more

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more

Attempts to write an entire buffer into this write. Read more

Writes a formatted string into this writer, returning any error encountered. Read more

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