pub struct UnionCombination<L, R, I> { /* private fields */ }
Expand description
Combination struct used for chaining Object
’s.
Combines 2 sets of cells into one.
Duplicates are removed from the output set.
Trait Implementations§
Source§impl<I, L, R> Object<I> for UnionCombination<L, R, I>
impl<I, L, R> Object<I> for UnionCombination<L, R, I>
Source§type Iter = UnionIter<<L as Object<I>>::Iter, <R as Object<I>>::Iter>
type Iter = UnionIter<<L as Object<I>>::Iter, <R as Object<I>>::Iter>
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<L, R, I> Freeze for UnionCombination<L, R, I>
impl<L, R, I> RefUnwindSafe for UnionCombination<L, R, I>
impl<L, R, I> Send for UnionCombination<L, R, I>
impl<L, R, I> Sync for UnionCombination<L, R, I>
impl<L, R, I> Unpin for UnionCombination<L, R, I>
impl<L, R, I> UnwindSafe for UnionCombination<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