pub type CassMallocFunction = Option<unsafe extern "C" fn(size: usize) -> *mut c_void>;
Expand description

A custom malloc function. This function should allocate “size” bytes and return a pointer to that memory

@param[in] size The size of the memory to allocate

@see CassFreeFunction @see cass_alloc_set_functions()