pub enum IntPredicate {
Eq,
Ne,
Ugt,
Uge,
Ult,
Ule,
Sgt,
Sge,
Slt,
Sle,
}Expand description
Public API for IntPredicate.
Variants§
Eq
Eq variant.
Ne
Ne variant.
Ugt
Ugt variant.
Uge
Uge variant.
Ult
Ult variant.
Ule
Ule variant.
Sgt
Sgt variant.
Sge
Sge variant.
Slt
Slt variant.
Sle
Sle variant.
Implementations§
Trait Implementations§
Source§impl Clone for IntPredicate
impl Clone for IntPredicate
Source§fn clone(&self) -> IntPredicate
fn clone(&self) -> IntPredicate
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IntPredicate
impl Debug for IntPredicate
Source§impl PartialEq for IntPredicate
impl PartialEq for IntPredicate
Source§fn eq(&self, other: &IntPredicate) -> bool
fn eq(&self, other: &IntPredicate) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for IntPredicate
impl Eq for IntPredicate
impl StructuralPartialEq for IntPredicate
Auto Trait Implementations§
impl Freeze for IntPredicate
impl RefUnwindSafe for IntPredicate
impl Send for IntPredicate
impl Sync for IntPredicate
impl Unpin for IntPredicate
impl UnsafeUnpin for IntPredicate
impl UnwindSafe for IntPredicate
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