#[doc(hidden)] trait SlicePartialEq<B> {
// Required method
fn equal(&self, other: &[B]) -> bool;
// Provided method
fn not_equal(&self, other: &[B]) -> bool { ... }
}
#[doc(hidden)] trait SlicePartialEq<B> {
// Required method
fn equal(&self, other: &[B]) -> bool;
// Provided method
fn not_equal(&self, other: &[B]) -> bool { ... }
}