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§
Auto 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