1//! This module defines the std aliases. 2use osom_lib_alloc::std_allocator::StdAllocator; 3 4use super::cbox::CBox; 5 6/// The alias for [`CBox`] with [`StdAllocator`]. 7pub type StdCBox<T> = CBox<T, StdAllocator>;