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