pub enum IntComparison {
GreaterEqual,
LessEqual,
Equal,
NotEqual,
}Variants§
Trait Implementations§
Source§impl Clone for IntComparison
impl Clone for IntComparison
Source§fn clone(&self) -> IntComparison
fn clone(&self) -> IntComparison
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 Debug for IntComparison
impl Debug for IntComparison
Source§impl Display for IntComparison
impl Display for IntComparison
Source§impl Hash for IntComparison
impl Hash for IntComparison
Source§impl Ord for IntComparison
impl Ord for IntComparison
Source§fn cmp(&self, other: &IntComparison) -> Ordering
fn cmp(&self, other: &IntComparison) -> 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 PartialEq for IntComparison
impl PartialEq for IntComparison
Source§impl PartialOrd for IntComparison
impl PartialOrd for IntComparison
impl Copy for IntComparison
impl Eq for IntComparison
impl StructuralPartialEq for IntComparison
Auto Trait Implementations§
impl Freeze for IntComparison
impl RefUnwindSafe for IntComparison
impl Send for IntComparison
impl Sync for IntComparison
impl Unpin for IntComparison
impl UnwindSafe for IntComparison
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.