pub struct SegmentAll;
Expand description
This is a segment which contains all cells on the table.
Can be created from Segment::all
.
Trait Implementations§
Source§impl Debug for SegmentAll
impl Debug for SegmentAll
Source§impl<I> Object<I> for SegmentAll
impl<I> Object<I> for SegmentAll
Source§type Iter = EntityOnce
type Iter = EntityOnce
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 Freeze for SegmentAll
impl RefUnwindSafe for SegmentAll
impl Send for SegmentAll
impl Sync for SegmentAll
impl Unpin for SegmentAll
impl UnwindSafe for SegmentAll
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