pub enum BinOper {
Show 27 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,
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
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.