pub trait Includer<Left, Right> { // Required method 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