pub trait FromAllocatorOutput<T> {
// Required method
fn from_allocator_output(alloc_output: T) -> Self;
}Expand description
traits for the allocator output convert to backend
Required Methods§
Sourcefn from_allocator_output(alloc_output: T) -> Self
fn from_allocator_output(alloc_output: T) -> Self
convert the allocator output to backend
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.