Enum alloc_no_stdlib::AllocatorC [] [src]

pub enum AllocatorC {
    Calloc(unsafe extern "C" fn(_: usize, _: usize) -> *mut u8),
    Malloc(unsafe extern "C" fn(_: usize) -> *mut u8),
    Custom(fn(_: usize) -> *mut u8),
}

Variants

Trait Implementations

Auto Trait Implementations

impl Send for AllocatorC

impl Sync for AllocatorC