pub trait StructuralEq {
    // Required method
    fn structural_eq(&self, other: &Self) -> bool;
}

Required Methods§

source

fn structural_eq(&self, other: &Self) -> bool

Implementors§