pub type SafeTlsf<T> = Tlsf<T, CheckedArena<TlsfBlock<T, Ptr>>, Ptr>;Expand description
Tlsf that uses CheckedArena for rigorous memory safety check.
It is really slow. Use SysTlsf in a production code.
§Type parameter
Tis an integer type used to represent region sizes. You usually useu32oru64for this.
Aliased Type§
pub struct SafeTlsf<T> { /* private fields */ }