io-buffer 1.0.7

A buffer abstracted for disk and network IO, with static lifetime. Unify Vec and *libc::c_void into one type, with smallest mem footprint.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(docsrs, allow(unused_attributes))]
#![doc = include_str!("../README.md")]

mod buffer;
mod utils;

pub use buffer::{Buffer, MAX_BUFFER_SIZE};
pub use utils::*;

#[cfg(any(feature = "compress", doc))]
/// Enabled with feature `compress`
pub mod compress;

#[cfg(test)]
mod test;