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