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