pub type MapContainsKeyFn = for<'map, 'key> unsafe fn(map: OpaqueConst<'map>, key: OpaqueConst<'key>) -> bool;Expand description
Check if the map contains a key
ยงSafety
The map parameter must point to aligned, initialized memory of the correct type.