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