pub enum SqliteAtomic {
Null,
Number(Number),
Text(Text),
Bool(Bool),
Operator(Operator),
Maybe(MaybeValue),
Sign(Sign),
Keyword(SqliteKeyword),
}Variants§
Null
Number(Number)
Text(Text)
Bool(Bool)
Operator(Operator)
Maybe(MaybeValue)
Sign(Sign)
Keyword(SqliteKeyword)
Trait Implementations§
Source§impl Clone for SqliteAtomic
impl Clone for SqliteAtomic
Source§fn clone(&self) -> SqliteAtomic
fn clone(&self) -> SqliteAtomic
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 SqliteAtomic
impl Debug for SqliteAtomic
Source§impl From<SqliteAtomic> for GenericAtomic
impl From<SqliteAtomic> for GenericAtomic
Source§fn from(pg_atomic: SqliteAtomic) -> Self
fn from(pg_atomic: SqliteAtomic) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SqliteAtomic
impl PartialEq for SqliteAtomic
Source§impl ToSqlSegment for SqliteAtomic
impl ToSqlSegment for SqliteAtomic
fn gen_sql_segment(&self) -> SqlSegment
fn gen_sql_segments(&self) -> Vec<SqlSegment>
impl StructuralPartialEq for SqliteAtomic
Auto Trait Implementations§
impl Freeze for SqliteAtomic
impl RefUnwindSafe for SqliteAtomic
impl Send for SqliteAtomic
impl Sync for SqliteAtomic
impl Unpin for SqliteAtomic
impl UnwindSafe for SqliteAtomic
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