pub struct BinaryOpExpr {
pub left: Box<Expr>,
pub op: BinaryOp,
pub right: Box<Expr>,
}Expand description
Binary operation
Fields§
§left: Box<Expr>§op: BinaryOp§right: Box<Expr>Trait Implementations§
Source§impl Clone for BinaryOpExpr
impl Clone for BinaryOpExpr
Source§fn clone(&self) -> BinaryOpExpr
fn clone(&self) -> BinaryOpExpr
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 BinaryOpExpr
impl Debug for BinaryOpExpr
Source§impl<'de> Deserialize<'de> for BinaryOpExpr
impl<'de> Deserialize<'de> for BinaryOpExpr
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 BinaryOpExpr
impl PartialEq for BinaryOpExpr
Source§impl Serialize for BinaryOpExpr
impl Serialize for BinaryOpExpr
impl StructuralPartialEq for BinaryOpExpr
Auto Trait Implementations§
impl Freeze for BinaryOpExpr
impl RefUnwindSafe for BinaryOpExpr
impl Send for BinaryOpExpr
impl Sync for BinaryOpExpr
impl Unpin for BinaryOpExpr
impl UnwindSafe for BinaryOpExpr
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