pub trait Cut<Rhs = Self> { type Output; // Required method fn cut(&mut self, rhs: &Rhs) -> Self::Output; }
Returns the intersection between self and other while removing the intersection from self