pub struct ArithmeticCommand {
pub expr: UnexpandedArithmeticExpr,
}
Expand description
An arithmetic command, evaluating an arithmetic expression.
Fields§
§expr: UnexpandedArithmeticExpr
The raw, unparsed and unexpanded arithmetic expression.
Trait Implementations§
Source§impl Clone for ArithmeticCommand
impl Clone for ArithmeticCommand
Source§fn clone(&self) -> ArithmeticCommand
fn clone(&self) -> ArithmeticCommand
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 ArithmeticCommand
impl Debug for ArithmeticCommand
Auto Trait Implementations§
impl Freeze for ArithmeticCommand
impl RefUnwindSafe for ArithmeticCommand
impl Send for ArithmeticCommand
impl Sync for ArithmeticCommand
impl Unpin for ArithmeticCommand
impl UnwindSafe for ArithmeticCommand
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