pub struct AssignmentExpression {
pub variable: String,
pub value: Box<dyn Expression>,
}Fields§
§variable: String§value: Box<dyn Expression>Implementations§
Source§impl AssignmentExpression
impl AssignmentExpression
pub fn new(variable: String, value: Box<dyn Expression>) -> Self
Trait Implementations§
Source§impl Debug for AssignmentExpression
impl Debug for AssignmentExpression
Auto Trait Implementations§
impl Freeze for AssignmentExpression
impl !RefUnwindSafe for AssignmentExpression
impl !Send for AssignmentExpression
impl !Sync for AssignmentExpression
impl Unpin for AssignmentExpression
impl !UnwindSafe for AssignmentExpression
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