pub trait Includer<Left, Right> { fn includes(&self, left: Left, right: Right) -> bool; }
Returns true if the set defined by left includes the one defined by right
true
left
right