Crate dribble [] [src]

The dribble library helps you test implementations of the traits std::io::Read and std::io::Write by passing data to them in small, random-sized chunks. This allows you to stress-test the code you run near buffer boundaries.

Structs

DribbleReader

Wrap an implementation of Read, and return bytes in small, random-sized chunks when read is called.

DribbleWriter

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