Struct go_vm::parser::ast::AssignStmt
source · pub struct AssignStmt {
pub lhs: Vec<Expr, Global>,
pub token_pos: usize,
pub token: Token,
pub rhs: Vec<Expr, Global>,
}
Fields§
§lhs: Vec<Expr, Global>
§token_pos: usize
§token: Token
§rhs: Vec<Expr, Global>
Implementations§
source§impl AssignStmt
impl AssignStmt
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for AssignStmt
impl !Send for AssignStmt
impl !Sync for AssignStmt
impl Unpin for AssignStmt
impl UnwindSafe for AssignStmt
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