pub trait CtEq<Rhs = Self>where
Rhs: ?Sized,{
// Required method
fn ct_eq(&self, other: &Rhs) -> Choice;
// Provided method
fn ct_ne(&self, other: &Rhs) -> Choice { ... }
}pub trait CtEq<Rhs = Self>where
Rhs: ?Sized,{
// Required method
fn ct_eq(&self, other: &Rhs) -> Choice;
// Provided method
fn ct_ne(&self, other: &Rhs) -> Choice { ... }
}