#[non_exhaustive]pub enum SqliteBinOper {
Glob,
Match,
GetJsonField,
CastJsonField,
}
Expand description
SQLite-specific binary operators.
For all supported operators (including the standard ones), see BinOper
.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Glob
GLOB
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 duplicate 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 for SqliteBinOper
impl PartialEq for SqliteBinOper
impl Copy for SqliteBinOper
impl Eq for SqliteBinOper
impl StructuralPartialEq for SqliteBinOper
Auto Trait Implementations§
impl Freeze for SqliteBinOper
impl RefUnwindSafe for SqliteBinOper
impl Send for SqliteBinOper
impl Sync for SqliteBinOper
impl Unpin for SqliteBinOper
impl UnwindSafe for SqliteBinOper
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