pub type CmpFn = for<'l, 'r> unsafe fn(OpaqueConst<'l>, 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.