pub struct IntersectionCombination<L, R> { /* 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<L, R> Object for IntersectionCombination<L, R>
impl<L, R> Object for IntersectionCombination<L, R>
Source§fn cells<T>(&self, table: &Table<T>) -> Self::Iterwhere
T: Records,
fn cells<T>(&self, table: &Table<T>) -> Self::Iterwhere
T: Records,
Cells returns a set of coordinates of cells
Source§fn and<O>(self, rhs: O) -> UnionCombination<Self, O>where
O: Object,
fn and<O>(self, rhs: O) -> UnionCombination<Self, O>where
O: Object,
Combines cells.
It doesn’t repeat cells.
Source§fn not<O>(self, rhs: O) -> DiffCombination<Self, O>where
O: Object,
fn not<O>(self, rhs: O) -> DiffCombination<Self, O>where
O: Object,
Excludes rhs cells from this cells.
Source§fn intersect<O>(self, rhs: O) -> IntersectionCombination<Self, O>where
O: Object,
fn intersect<O>(self, rhs: O) -> IntersectionCombination<Self, O>where
O: Object,
Returns cells which are present in both
Object
s only.Source§fn inverse(self) -> InversionCombination<Self>
fn inverse(self) -> InversionCombination<Self>
Returns cells which are not present in target
Object
.Auto Trait Implementations§
impl<L, R> Freeze for IntersectionCombination<L, R>
impl<L, R> RefUnwindSafe for IntersectionCombination<L, R>where
L: RefUnwindSafe,
R: RefUnwindSafe,
impl<L, R> Send for IntersectionCombination<L, R>
impl<L, R> Sync for IntersectionCombination<L, R>
impl<L, R> Unpin for IntersectionCombination<L, R>
impl<L, R> UnwindSafe for IntersectionCombination<L, R>where
L: UnwindSafe,
R: 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