1//! Traits related to memory allocation. 2 3mod allocator; 4#[doc(inline)] 5pub use self::allocator::Allocator; 6 7mod raw_vec; 8#[doc(inline)] 9pub use self::raw_vec::RawVec;