pub struct SetStatement {
pub target: Expr,
pub operator_maybe: Option<BinaryOperator>,
pub expr: Expr,
}
Expand description
代入文
Fields§
§target: Expr
対象となる式. 指定の仕方によってはJSのSyntaxErrorになる
operator_maybe: Option<BinaryOperator>
演算子を=の左につける
expr: Expr
式
Auto Trait Implementations§
impl Freeze for SetStatement
impl RefUnwindSafe for SetStatement
impl Send for SetStatement
impl Sync for SetStatement
impl Unpin for SetStatement
impl UnwindSafe for SetStatement
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