pub trait HasChanged {
    type Criteria: Eq;
    fn has_changed(&self, criteria: &Self::Criteria) -> bool;
}

Associated Types

Required methods

Implementations on Foreign Types

Implementors