Skip to main content

slop_alloc/
lib.rs

1#![allow(clippy::disallowed_types)]
2mod allocator;
3mod backend;
4mod buffer;
5mod init;
6pub mod mem;
7mod raw_buffer;
8mod slice;
9
10pub use allocator::*;
11pub use buffer::Buffer;
12pub use init::Init;
13pub use slice::Slice;
14
15pub use backend::*;
16pub use raw_buffer::{RawBuffer, TryReserveError};