pub struct ArithmeticExpression {
pub left: Box<SelectExpression>,
pub operator: ArithmeticOperator,
pub right: Box<SelectExpression>,
}Expand description
Arithmetic expressions
Fields§
§left: Box<SelectExpression>Left operand
operator: ArithmeticOperatorOperator
right: Box<SelectExpression>Right operand
Trait Implementations§
Source§impl Clone for ArithmeticExpression
impl Clone for ArithmeticExpression
Source§fn clone(&self) -> ArithmeticExpression
fn clone(&self) -> ArithmeticExpression
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ArithmeticExpression
impl Debug for ArithmeticExpression
Source§impl<'de> Deserialize<'de> for ArithmeticExpression
impl<'de> Deserialize<'de> for ArithmeticExpression
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ArithmeticExpression
impl PartialEq for ArithmeticExpression
Source§fn eq(&self, other: &ArithmeticExpression) -> bool
fn eq(&self, other: &ArithmeticExpression) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ArithmeticExpression
impl Serialize for ArithmeticExpression
impl StructuralPartialEq for ArithmeticExpression
Auto Trait Implementations§
impl Freeze for ArithmeticExpression
impl RefUnwindSafe for ArithmeticExpression
impl Send for ArithmeticExpression
impl Sync for ArithmeticExpression
impl Unpin for ArithmeticExpression
impl UnsafeUnpin for ArithmeticExpression
impl UnwindSafe for ArithmeticExpression
Blanket Implementations§
impl<T> Allocation for T
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