[][src]Trait rgraph::Comparable

pub trait Comparable {
    fn ne(&self, other: &Self) -> bool;
}

this trait allows us to overload behavior for custom types in this manner comparison can be optimized or bypassed for custom types

Required methods

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

Loading content...

Implementors

impl<T> Comparable for T where
    T: PartialEq
[src]

Loading content...