pub struct FilterObject<O, F, R> { /* private fields */ }
Expand description
Filter object for any Object
.
Trait Implementations§
Source§impl<O: Clone, F: Clone, R: Clone> Clone for FilterObject<O, F, R>
impl<O: Clone, F: Clone, R: Clone> Clone for FilterObject<O, F, R>
Source§fn clone(&self) -> FilterObject<O, F, R>
fn clone(&self) -> FilterObject<O, F, R>
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<O: Default, F: Default, R: Default> Default for FilterObject<O, F, R>
impl<O: Default, F: Default, R: Default> Default for FilterObject<O, F, R>
Source§fn default() -> FilterObject<O, F, R>
fn default() -> FilterObject<O, F, R>
Returns the “default value” for a type. Read more
Source§impl<O, R, F> Object<R> for FilterObject<O, F, R>
impl<O, R, F> Object<R> for FilterObject<O, F, R>
Source§type Iter = FilterObjectIter<<O as Object<R>>::Iter, F>
type Iter = FilterObjectIter<<O as Object<R>>::Iter, F>
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.
Source§impl<O: Ord, F: Ord, R: Ord> Ord for FilterObject<O, F, R>
impl<O: Ord, F: Ord, R: Ord> Ord for FilterObject<O, F, R>
Source§fn cmp(&self, other: &FilterObject<O, F, R>) -> Ordering
fn cmp(&self, other: &FilterObject<O, F, R>) -> 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<O: PartialOrd, F: PartialOrd, R: PartialOrd> PartialOrd for FilterObject<O, F, R>
impl<O: PartialOrd, F: PartialOrd, R: PartialOrd> PartialOrd for FilterObject<O, F, R>
impl<O: Copy, F: Copy, R: Copy> Copy for FilterObject<O, F, R>
impl<O: Eq, F: Eq, R: Eq> Eq for FilterObject<O, F, R>
impl<O, F, R> StructuralPartialEq for FilterObject<O, F, R>
Auto Trait Implementations§
impl<O, F, R> Freeze for FilterObject<O, F, R>
impl<O, F, R> RefUnwindSafe for FilterObject<O, F, R>
impl<O, F, R> Send for FilterObject<O, F, R>
impl<O, F, R> Sync for FilterObject<O, F, R>
impl<O, F, R> Unpin for FilterObject<O, F, R>
impl<O, F, R> UnwindSafe for FilterObject<O, F, R>
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