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

Required Methods§

source

fn is_satisfied_by(&self, arg: &T) -> bool

Implementors§