musli_core/alloc/
mod.rs

1
2
3
4
5
6
7
8
9
//! Traits related to memory allocation.

mod allocator;
#[doc(inline)]
pub use self::allocator::Allocator;

mod raw_vec;
#[doc(inline)]
pub use self::raw_vec::RawVec;