pub struct ForInStatement {
pub left: Box<Node>,
pub right: Box<Node>,
pub body: Box<Node>,
pub span: Option<Span>,
}Fields§
§left: Box<Node>§right: Box<Node>§body: Box<Node>§span: Option<Span>Trait Implementations§
Source§impl Clone for ForInStatement
impl Clone for ForInStatement
Source§fn clone(&self) -> ForInStatement
fn clone(&self) -> ForInStatement
Returns a copy 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 moreSource§impl Debug for ForInStatement
impl Debug for ForInStatement
Source§impl<'de> Deserialize<'de> for ForInStatement
impl<'de> Deserialize<'de> for ForInStatement
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ForInStatement
impl PartialEq for ForInStatement
Source§impl Serialize for ForInStatement
impl Serialize for ForInStatement
impl StructuralPartialEq 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 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