pub trait OptionEq<Rhs, InnerRhs = Rhs> {
// Required method
fn opt_eq(&self, other: Rhs) -> Option<bool>;
// Provided method
fn opt_ne(&self, other: Rhs) -> Option<bool> { ... }
}
Expand description
Trait for the equality OptionOperations
.