Type Alias PartialEqFn

Source
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.