Enum sea_orm_migration::prelude::BinOper
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§
§impl From<SqliteBinOper> for BinOper
impl From<SqliteBinOper> for BinOper
§fn from(o: SqliteBinOper) -> BinOper
fn from(o: SqliteBinOper) -> BinOper
Converts to this type from the input type.
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