pub type MapGetValuePtrFn = for<'map, 'key> unsafe fn(_: PtrConst<'map>, _: PtrConst<'key>) -> Option<PtrConst<'map>>;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.