pub struct BinaryOpExprs {
pub lhs: Expression,
pub rhs: Expression,
}
Fields§
§lhs: Expression
§rhs: Expression
Trait Implementations§
Source§impl Clone for BinaryOpExprs
impl Clone for BinaryOpExprs
Source§fn clone(&self) -> BinaryOpExprs
fn clone(&self) -> BinaryOpExprs
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 BinaryOpExprs
impl Debug for BinaryOpExprs
Source§impl PartialEq for BinaryOpExprs
impl PartialEq for BinaryOpExprs
impl StructuralPartialEq for BinaryOpExprs
Auto Trait Implementations§
impl Freeze for BinaryOpExprs
impl RefUnwindSafe for BinaryOpExprs
impl Send for BinaryOpExprs
impl Sync for BinaryOpExprs
impl Unpin for BinaryOpExprs
impl UnwindSafe for BinaryOpExprs
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