Enum sea_query::types::BinOper[][src]

pub enum BinOper {
Show variants And, Or, Like, NotLike, Is, IsNot, In, NotIn, Between, NotBetween, Equal, NotEqual, SmallerThan, GreaterThan, SmallerThanOrEqual, GreaterThanOrEqual, Add, Sub, Mul, Div,
}

Binary operator

Variants

And
Or
Like
NotLike
Is
IsNot
In
NotIn
Between
NotBetween
Equal
NotEqual
SmallerThan
GreaterThan
SmallerThanOrEqual
GreaterThanOrEqual
Add
Sub
Mul
Div

Trait Implementations

impl Clone for BinOper[src]

impl Copy for BinOper[src]

impl Debug for BinOper[src]

impl Eq for BinOper[src]

impl PartialEq<BinOper> for BinOper[src]

impl StructuralEq for BinOper[src]

impl StructuralPartialEq for BinOper[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,