pub struct ForInStatement {
pub base: BaseNode,
pub left: Box<ForInOfLeft>,
pub right: Box<Expression>,
pub body: Box<Statement>,
}Fields§
§base: BaseNode§left: Box<ForInOfLeft>§right: Box<Expression>§body: Box<Statement>Trait Implementations§
Source§impl Clone for ForInStatement
impl Clone for ForInStatement
Source§fn clone(&self) -> ForInStatement
fn clone(&self) -> ForInStatement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ForInStatement
impl Debug for ForInStatement
Auto Trait Implementations§
impl Freeze for ForInStatement
impl RefUnwindSafe for ForInStatement
impl Send for ForInStatement
impl Sync for ForInStatement
impl Unpin for ForInStatement
impl UnsafeUnpin for ForInStatement
impl UnwindSafe for ForInStatement
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