#![allow(clippy::module_name_repetitions)]
pub use constants::*;
pub use error::BufferError;
pub use shared::SharedBuffer;
pub use traits::*;
mod constants;
mod error;
mod implementations;
mod methods;
mod shared;
mod traits;
#[must_use]
pub struct Buffer {
ptr: *mut u8,
capacity: usize,
length: usize,
}
unsafe impl Send for Buffer {}
unsafe impl Sync for Buffer {}