pub trait Includer<Left, Right> {
    fn includes(&self, left: Left, right: Right) -> bool;
}

Required Methods

Returns true if the set defined by left includes the one defined by right

Implementors