pub struct ForInStatement {
pub left: ForInOfLeft,
pub right: Expression,
pub body: Box<ASTNode>,
}Fields§
§left: ForInOfLeft§right: Expression§body: Box<ASTNode>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 moreAuto 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