linked-buffer 0.0.2

Yet another linked buffer implemention.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! LinkedBuffer

mod block;

mod buf;
mod buffer;
mod buffer_mut;

pub use buffer::Buffer;
pub use buffer_mut::BufferMut;

// re-export bytes::{Buf, BufMut}
pub use bytes::{Buf, BufMut};

// monoio if feature is enabled
#[cfg(feature = "monoio")]
pub mod monoio;