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.
impl Copy for BinOper
impl Eq for BinOper
impl StructuralPartialEq for BinOper
Auto Trait Implementationsยง
impl Freeze for BinOper
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
sourceยงimpl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
sourceยงunsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
๐ฌThis is a nightly-only experimental API. (
clone_to_uninit
)