//! `std::io::Cursor`-backed test helpers for the async I/O traits.
//!
//! These are identical to [`crate::io::BlockingIo`] over a `Cursor` —
//! the type alias below is just a shorthand the unit tests use.
use Cursor;
use BlockingIo;
/// A `BlockingIo<Cursor<Vec<u8>>>`, useful for in-memory reads in tests.
pub type CursorRead = ;
/// A `BlockingIo<Vec<u8>>` (writable), useful for in-memory writes in tests.
pub type CursorWrite = ;
/// Construct a `CursorRead` from bytes.
/// Construct an empty `CursorWrite`.