Enum sea_query::extension::sqlite::SqliteBinOper
source · pub enum SqliteBinOper {
Match,
GetJsonField,
CastJsonField,
}
Available on crate feature
backend-sqlite
only.Expand description
Sqlite-specific binary operator.
Variants§
Match
MATCH
.
GetJsonField
->
. Retrieves JSON field as JSON value.
CastJsonField
->>
. Retrieves JSON field and casts it to an appropriate SQL type.
Trait Implementations§
source§impl Clone for SqliteBinOper
impl Clone for SqliteBinOper
source§fn clone(&self) -> SqliteBinOper
fn clone(&self) -> SqliteBinOper
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SqliteBinOper
impl Debug for SqliteBinOper
source§impl From<SqliteBinOper> for BinOper
impl From<SqliteBinOper> for BinOper
source§fn from(o: SqliteBinOper) -> Self
fn from(o: SqliteBinOper) -> Self
Converts to this type from the input type.
source§impl PartialEq<SqliteBinOper> for SqliteBinOper
impl PartialEq<SqliteBinOper> for SqliteBinOper
source§fn eq(&self, other: &SqliteBinOper) -> bool
fn eq(&self, other: &SqliteBinOper) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.