pub struct AssignStmt {
pub lhs: Vec<Expr>,
pub token_pos: Pos,
pub token: Token,
pub rhs: Vec<Expr>,
}
Fields§
§lhs: Vec<Expr>
§token_pos: Pos
§token: Token
§rhs: Vec<Expr>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AssignStmt
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