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