pub enum RelationalOperator {
LessOrEqual,
Equal,
GreaterOrEqual,
}
Expand description
The possible relations that a constraint can specify.
Variants§
Trait Implementations§
Source§impl Clone for RelationalOperator
impl Clone for RelationalOperator
Source§fn clone(&self) -> RelationalOperator
fn clone(&self) -> RelationalOperator
Returns a copy 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 RelationalOperator
impl Debug for RelationalOperator
Source§impl Display for RelationalOperator
impl Display for RelationalOperator
Source§impl Hash for RelationalOperator
impl Hash for RelationalOperator
Source§impl Ord for RelationalOperator
impl Ord for RelationalOperator
Source§fn cmp(&self, other: &RelationalOperator) -> Ordering
fn cmp(&self, other: &RelationalOperator) -> 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 RelationalOperator
impl PartialEq for RelationalOperator
Source§impl PartialOrd for RelationalOperator
impl PartialOrd for RelationalOperator
impl Copy for RelationalOperator
impl Eq for RelationalOperator
impl StructuralPartialEq for RelationalOperator
Auto Trait Implementations§
impl Freeze for RelationalOperator
impl RefUnwindSafe for RelationalOperator
impl Send for RelationalOperator
impl Sync for RelationalOperator
impl Unpin for RelationalOperator
impl UnwindSafe for RelationalOperator
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