pub type PartialEqFn = for<'l, 'r> unsafe fn(_: PtrConst<'l>, _: PtrConst<'r>) -> bool;Expand description
Function to check if two values are partially equal
ยงSafety
Both left and right parameters must point to aligned, initialized memory of the correct type.