pub trait AllocImpl: Sealed + IntoGEMObject {
type Driver: Driver;
const ALLOC_OPS: AllocOps;
}
Expand description
Trait for memory manager implementations. Implemented internally.
Required Associated Constants§
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.