Trait AllocImpl

Source
pub trait AllocImpl: Sealed + IntoGEMObject {
    const ALLOC_OPS: AllocOps;
}
Expand description

Trait for memory manager implementations. Implemented internally.

Required Associated Constants§

Source

const ALLOC_OPS: AllocOps

The C callback operations for this memory manager.

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.

Implementors§