Enum sea_orm_migration::prelude::BinOper
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§
§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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.