block_device_adapters/
lib.rs

1//! Block device adapters
2
3#![cfg_attr(not(test), no_std)]
4
5// MUST be the first module listed
6mod fmt;
7
8mod buf_stream;
9mod stream_slice;
10
11pub use buf_stream::{BufStream, BufStreamError};
12pub use stream_slice::{StreamSlice, StreamSliceError};