Skip to main content

AllocImpl

Trait AllocImpl 

Source
pub trait AllocImpl: Sealed + IntoGEMObject {
    type Driver: Driver;

    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.

Required Associated Types§

Source

type Driver: Driver

The Driver implementation for this AllocImpl.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§