pub enum CaseRelOp {
Equal,
NotEqual,
Less,
LessEqual,
Greater,
GreaterEqual,
}
Expand description
Collection of relational operators that can appear in a CASE IS
guard..
Variants§
Equal
Relational operator for CASE IS =
.
NotEqual
Relational operator for CASE IS <>
.
Less
Relational operator for CASE IS <
.
LessEqual
Relational operator for CASE IS <=
.
Greater
Relational operator for CASE IS >
.
GreaterEqual
Relational operator for CASE IS >=
.
Trait Implementations§
impl Eq for CaseRelOp
impl StructuralPartialEq for CaseRelOp
Auto Trait Implementations§
impl Freeze for CaseRelOp
impl RefUnwindSafe for CaseRelOp
impl Send for CaseRelOp
impl Sync for CaseRelOp
impl Unpin for CaseRelOp
impl UnwindSafe for CaseRelOp
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