trait SlicePartialEq<B> {
    // Required method
    fn equal(&self, other: &[B]) -> bool;

    // Provided method
    fn not_equal(&self, other: &[B]) -> bool { ... }
}

Required Methods§

source

fn equal(&self, other: &[B]) -> bool

Provided Methods§

source

fn not_equal(&self, other: &[B]) -> bool

Implementors§