pub enum SimpleExpr {
Single(Atomic),
Binary {
left: Atomic,
op: Operator,
right: Atomic,
},
}Variants§
Implementations§
Source§impl SimpleExpr
impl SimpleExpr
Trait Implementations§
Source§impl Clone for SimpleExpr
impl Clone for SimpleExpr
Source§fn clone(&self) -> SimpleExpr
fn clone(&self) -> SimpleExpr
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 SimpleExpr
impl Debug for SimpleExpr
Source§impl PartialEq for SimpleExpr
impl PartialEq for SimpleExpr
Source§impl ToSqlSegment for SimpleExpr
impl ToSqlSegment for SimpleExpr
fn gen_sql_segments(&self) -> Vec<SqlSegment>
fn gen_sql_segment(&self) -> SqlSegment
impl StructuralPartialEq for SimpleExpr
Auto Trait Implementations§
impl Freeze for SimpleExpr
impl RefUnwindSafe for SimpleExpr
impl Send for SimpleExpr
impl Sync for SimpleExpr
impl Unpin for SimpleExpr
impl UnwindSafe for SimpleExpr
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