pub enum MySqlAtomic {
Null,
Number(Number),
Text(Text),
Bool(Bool),
Operator(Operator),
Maybe(MaybeValue),
Sign(Sign),
Keyword(MySqlKeyword),
}Variants§
Null
Number(Number)
Text(Text)
Bool(Bool)
Operator(Operator)
Maybe(MaybeValue)
Sign(Sign)
Keyword(MySqlKeyword)
Trait Implementations§
Source§impl Clone for MySqlAtomic
impl Clone for MySqlAtomic
Source§fn clone(&self) -> MySqlAtomic
fn clone(&self) -> MySqlAtomic
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 MySqlAtomic
impl Debug for MySqlAtomic
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 PartialEq for MySqlAtomic
impl PartialEq for MySqlAtomic
Source§impl ToSqlSegment for MySqlAtomic
impl ToSqlSegment for MySqlAtomic
fn gen_sql_segment(&self) -> SqlSegment
fn gen_sql_segments(&self) -> Vec<SqlSegment>
impl StructuralPartialEq for MySqlAtomic
Auto Trait Implementations§
impl Freeze for MySqlAtomic
impl RefUnwindSafe for MySqlAtomic
impl Send for MySqlAtomic
impl Sync for MySqlAtomic
impl Unpin for MySqlAtomic
impl UnwindSafe for MySqlAtomic
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