pub struct BinaryExpression {
pub left: Expression,
pub right: Expression,
pub operator: BinaryOperator,
}
Fields§
§left: Expression
§right: Expression
§operator: BinaryOperator
Trait Implementations§
Source§impl Clone for BinaryExpression
impl Clone for BinaryExpression
Source§fn clone(&self) -> BinaryExpression
fn clone(&self) -> BinaryExpression
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 BinaryExpression
impl Debug for BinaryExpression
Source§impl From<(Expression, BinaryOperator, Expression)> for BinaryExpression
impl From<(Expression, BinaryOperator, Expression)> for BinaryExpression
Source§fn from(
(left, operator, right): (Expression, BinaryOperator, Expression),
) -> Self
fn from( (left, operator, right): (Expression, BinaryOperator, Expression), ) -> Self
Converts to this type from the input type.
Source§impl Into<Expression> for BinaryExpression
impl Into<Expression> for BinaryExpression
Source§fn into(self) -> Expression
fn into(self) -> Expression
Converts this type into the (usually inferred) input type.
Source§impl PartialEq for BinaryExpression
impl PartialEq for BinaryExpression
impl Eq for BinaryExpression
impl StructuralPartialEq for BinaryExpression
Auto Trait Implementations§
impl Freeze for BinaryExpression
impl RefUnwindSafe for BinaryExpression
impl Send for BinaryExpression
impl Sync for BinaryExpression
impl Unpin for BinaryExpression
impl UnwindSafe for BinaryExpression
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