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