DynOperatorEq

Trait DynOperatorEq 

Source
pub trait DynOperatorEq: SealedEq {
    // Required method
    fn dyn_operator_eq(&self, other: &dyn Any) -> bool;
}

Required Methods§

Source

fn dyn_operator_eq(&self, other: &dyn Any) -> bool

Implementors§

Source§

impl<T: OperatorEq + 'static> DynOperatorEq for T