pub struct ForOfStatement {
pub left: ForInOfLeft,
pub right: Rc<Expression>,
pub body: Rc<Statement>,
pub await_: bool,
pub span: Span,
}Fields§
§left: ForInOfLeft§right: Rc<Expression>§body: Rc<Statement>§await_: bool§span: SpanTrait Implementations§
Source§impl Clone for ForOfStatement
impl Clone for ForOfStatement
Source§fn clone(&self) -> ForOfStatement
fn clone(&self) -> ForOfStatement
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 moreAuto Trait Implementations§
impl Freeze for ForOfStatement
impl RefUnwindSafe for ForOfStatement
impl !Send for ForOfStatement
impl !Sync for ForOfStatement
impl Unpin for ForOfStatement
impl UnwindSafe for ForOfStatement
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