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
Calloc(unsafe extern "C" fn(_: usize, _: usize) -> *mut u8)Malloc(unsafe extern "C" fn(_: usize) -> *mut u8)Custom(fn(_: usize) -> *mut u8)