pub enum BinOper {
Show 28 variants
And,
Or,
Like,
NotLike,
Is,
IsNot,
In,
NotIn,
Between,
NotBetween,
Equal,
NotEqual,
SmallerThan,
GreaterThan,
SmallerThanOrEqual,
GreaterThanOrEqual,
Add,
Sub,
Mul,
Div,
Mod,
LShift,
RShift,
As,
Escape,
Custom(&'static str),
PgOperator(PgBinOper),
SqliteOperator(SqliteBinOper),
}
Expand description
Binary operator
Variants§
And
Or
Like
NotLike
Is
IsNot
In
NotIn
Between
NotBetween
Equal
NotEqual
SmallerThan
GreaterThan
SmallerThanOrEqual
GreaterThanOrEqual
Add
Sub
Mul
Div
Mod
LShift
RShift
As
Escape
Custom(&'static str)
PgOperator(PgBinOper)
SqliteOperator(SqliteBinOper)
Trait Implementations§
source§impl From<SqliteBinOper> for BinOper
Available on crate feature backend-sqlite
only.
impl From<SqliteBinOper> for BinOper
Available on crate feature
backend-sqlite
only.source§fn from(o: SqliteBinOper) -> Self
fn from(o: SqliteBinOper) -> Self
Converts to this type from the input type.
source§impl PartialEq<BinOper> for BinOper
impl PartialEq<BinOper> for BinOper
impl Copy for BinOper
impl Eq for BinOper
impl StructuralEq for BinOper
impl StructuralPartialEq for BinOper
Auto Trait Implementations§
impl RefUnwindSafe for BinOper
impl Send for BinOper
impl Sync for BinOper
impl Unpin for BinOper
impl UnwindSafe for BinOper
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