pub enum LessBinaryConditionOperatorKind {
GreaterThan,
GreaterThanOrEqual,
LessThan,
LessThanOrEqual,
Equal,
EqualOrGreaterThan,
EqualOrLessThan,
And,
Or,
}Variants§
GreaterThan
GreaterThanOrEqual
LessThan
LessThanOrEqual
Equal
EqualOrGreaterThan
EqualOrLessThan
And
Or
Trait Implementations§
Source§impl Clone for LessBinaryConditionOperatorKind
impl Clone for LessBinaryConditionOperatorKind
Source§fn clone(&self) -> LessBinaryConditionOperatorKind
fn clone(&self) -> LessBinaryConditionOperatorKind
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 PartialEq for LessBinaryConditionOperatorKind
impl PartialEq for LessBinaryConditionOperatorKind
Source§fn eq(&self, other: &LessBinaryConditionOperatorKind) -> bool
fn eq(&self, other: &LessBinaryConditionOperatorKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LessBinaryConditionOperatorKind
Auto Trait Implementations§
impl Freeze for LessBinaryConditionOperatorKind
impl RefUnwindSafe for LessBinaryConditionOperatorKind
impl Send for LessBinaryConditionOperatorKind
impl Sync for LessBinaryConditionOperatorKind
impl Unpin for LessBinaryConditionOperatorKind
impl UnsafeUnpin for LessBinaryConditionOperatorKind
impl UnwindSafe for LessBinaryConditionOperatorKind
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