pub type nghttp2_calloc = Option<unsafe extern "C" fn(nmemb: usize, size: usize, mem_user_data: *mut c_void) -> *mut c_void>;Expand description
@functypedef
Custom memory allocator to replace calloc(). The |mem_user_data|
is the mem_user_data member of :type:nghttp2_mem structure.
Aliased Type§
pub enum nghttp2_calloc {
None,
Some(unsafe extern "C" fn(usize, usize, *mut c_void) -> *mut c_void),
}