pub struct IntersectionCombination<L, R, I> { /* private fields */ }
Expand description
Intersection struct used for chaining Object
’s.
Returns cells which are present in 2 sets. But not in one of them
Trait Implementations§
Source§impl<I, L, R> Object<I> for IntersectionCombination<L, R, I>
impl<I, L, R> Object<I> for IntersectionCombination<L, R, I>
Source§fn and<O>(self, rhs: O) -> UnionCombination<Self, O, R>where
Self: Sized,
fn and<O>(self, rhs: O) -> UnionCombination<Self, O, R>where
Self: Sized,
Combines cells.
It doesn’t repeat cells.
Source§fn not<O>(self, rhs: O) -> DiffCombination<Self, O, R>where
Self: Sized,
fn not<O>(self, rhs: O) -> DiffCombination<Self, O, R>where
Self: Sized,
Excludes rhs cells from this cells.
Auto Trait Implementations§
impl<L, R, I> Freeze for IntersectionCombination<L, R, I>
impl<L, R, I> RefUnwindSafe for IntersectionCombination<L, R, I>
impl<L, R, I> Send for IntersectionCombination<L, R, I>
impl<L, R, I> Sync for IntersectionCombination<L, R, I>
impl<L, R, I> Unpin for IntersectionCombination<L, R, I>
impl<L, R, I> UnwindSafe for IntersectionCombination<L, R, I>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more