pub trait Specification<T>: Clone {
    fn is_satisfied_by(&self, arg: &T) -> bool;
}

Required Methods§

Implementors§