pub struct InversionCombination<O, I> { /* private fields */ }
Expand description
Inversion 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, O> Object<I> for InversionCombination<O, I>
impl<I, O> Object<I> for InversionCombination<O, I>
Source§type Iter = InversionIter
type Iter = InversionIter
An
Iterator
which returns a list of cells.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<O, I> Freeze for InversionCombination<O, I>where
O: Freeze,
impl<O, I> RefUnwindSafe for InversionCombination<O, I>where
O: RefUnwindSafe,
I: RefUnwindSafe,
impl<O, I> Send for InversionCombination<O, I>
impl<O, I> Sync for InversionCombination<O, I>
impl<O, I> Unpin for InversionCombination<O, I>
impl<O, I> UnwindSafe for InversionCombination<O, I>where
O: UnwindSafe,
I: UnwindSafe,
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