pub type MapGetValuePtrFn = unsafe extern "C" fn(map: PtrConst, key: PtrConst) -> *const u8;Expand description
Get pointer to a value for a given key, returns None if not found
ยงSafety
The map parameter must point to aligned, initialized memory of the correct type.