pub struct ByCondition<F>(/* private fields */);
Expand description
The structure is an implementation of Location
to search for cells with a specified condition.
Implementations§
Trait Implementations§
Source§impl<F: Clone> Clone for ByCondition<F>
impl<F: Clone> Clone for ByCondition<F>
Source§fn clone(&self) -> ByCondition<F>
fn clone(&self) -> ByCondition<F>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<F: Debug> Debug for ByCondition<F>
impl<F: Debug> Debug for ByCondition<F>
Source§impl<F: Default> Default for ByCondition<F>
impl<F: Default> Default for ByCondition<F>
Source§fn default() -> ByCondition<F>
fn default() -> ByCondition<F>
Returns the “default value” for a type. Read more
Source§impl<F: Hash> Hash for ByCondition<F>
impl<F: Hash> Hash for ByCondition<F>
Source§impl<F, R> Location<R> for ByCondition<F>
impl<F, R> Location<R> for ByCondition<F>
Source§impl<F, R> Object<R> for ByCondition<F>
impl<F, R> Object<R> for ByCondition<F>
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.
Source§impl<F: Ord> Ord for ByCondition<F>
impl<F: Ord> Ord for ByCondition<F>
Source§fn cmp(&self, other: &ByCondition<F>) -> Ordering
fn cmp(&self, other: &ByCondition<F>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<F: PartialEq> PartialEq for ByCondition<F>
impl<F: PartialEq> PartialEq for ByCondition<F>
Source§impl<F: PartialOrd> PartialOrd for ByCondition<F>
impl<F: PartialOrd> PartialOrd for ByCondition<F>
impl<F: Copy> Copy for ByCondition<F>
impl<F: Eq> Eq for ByCondition<F>
impl<F> StructuralPartialEq for ByCondition<F>
Auto Trait Implementations§
impl<F> Freeze for ByCondition<F>where
F: Freeze,
impl<F> RefUnwindSafe for ByCondition<F>where
F: RefUnwindSafe,
impl<F> Send for ByCondition<F>where
F: Send,
impl<F> Sync for ByCondition<F>where
F: Sync,
impl<F> Unpin for ByCondition<F>where
F: Unpin,
impl<F> UnwindSafe for ByCondition<F>where
F: 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