pub type CmpFn = for<'l, 'r> unsafe fn(left: OpaqueConst<'l>, right: OpaqueConst<'r>) -> Ordering;Expand description
Function to compare two values and return their ordering
ยงSafety
Both left and right parameters must point to aligned, initialized memory of the correct type.