pub struct VariableCompoundAssignment {
pub variable_ref: VariableRef,
pub expression: Box<Expression>,
pub compound_operator: CompoundOperator,
}
Fields§
§variable_ref: VariableRef
§expression: Box<Expression>
§compound_operator: CompoundOperator
Trait Implementations§
Source§impl Clone for VariableCompoundAssignment
impl Clone for VariableCompoundAssignment
Source§fn clone(&self) -> VariableCompoundAssignment
fn clone(&self) -> VariableCompoundAssignment
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 moreAuto Trait Implementations§
impl Freeze for VariableCompoundAssignment
impl RefUnwindSafe for VariableCompoundAssignment
impl !Send for VariableCompoundAssignment
impl !Sync for VariableCompoundAssignment
impl Unpin for VariableCompoundAssignment
impl UnwindSafe for VariableCompoundAssignment
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