flash_mockstream/
lib.rs

1//! A mockstream that implements std::io::Read, std::io::Write, tokio_io::AsyncRead and tokio_io::AsyncWrite.
2#![deny(missing_docs, warnings, missing_debug_implementations)]
3extern crate futures;
4extern crate tokio_io;
5
6pub mod mockstream;
7
8pub use mockstream::MockStream;