pub trait HasChanged {
    type Criteria: Eq;

    fn has_changed(&self, criteria: &Self::Criteria) -> bool;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors