pub type SysTlsf<T> = Tlsf<T, PooledArena<TlsfBlock<T, Ptr>, SysAllocator, Ptr>, Ptr>;Expand description
Tlsf that uses the system allocator for the internal storage allocation.
§Type parameter
Tis an integer type used to represent region sizes. You usually useu32oru64for this.
Aliased Type§
pub struct SysTlsf<T> { /* private fields */ }Implementations§
Source§impl<T: BinaryUInteger> SysTlsf<T>
impl<T: BinaryUInteger> SysTlsf<T>
Sourcepub fn with_capacity(size: T, capacity: usize) -> Self
pub fn with_capacity(size: T, capacity: usize) -> Self
Construct a SysTlsf with a specific capacity.