pub struct ForRangeLoop<'tree> {
pub span: Span,
pub body: Statement<'tree>,
pub declarator: Declarator<'tree>,
pub initializer: Option<InitStatement<'tree>>,
pub right: ForRangeLoopRight<'tree>,
pub type: TypeSpecifier<'tree>,
pub children: Vec<ForRangeLoopChildren<'tree>>,
}Fields§
§span: Span§body: Statement<'tree>§declarator: Declarator<'tree>§initializer: Option<InitStatement<'tree>>§right: ForRangeLoopRight<'tree>§type: TypeSpecifier<'tree>§children: Vec<ForRangeLoopChildren<'tree>>Trait Implementations§
Source§impl<'tree> Clone for ForRangeLoop<'tree>
impl<'tree> Clone for ForRangeLoop<'tree>
Source§fn clone(&self) -> ForRangeLoop<'tree>
fn clone(&self) -> ForRangeLoop<'tree>
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 moreSource§impl<'tree> Debug for ForRangeLoop<'tree>
impl<'tree> Debug for ForRangeLoop<'tree>
Source§impl<'tree> FromNode<'tree> for ForRangeLoop<'tree>
impl<'tree> FromNode<'tree> for ForRangeLoop<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for ForRangeLoop<'tree>
impl<'tree> RefUnwindSafe for ForRangeLoop<'tree>
impl<'tree> Send for ForRangeLoop<'tree>
impl<'tree> Sync for ForRangeLoop<'tree>
impl<'tree> Unpin for ForRangeLoop<'tree>
impl<'tree> UnsafeUnpin for ForRangeLoop<'tree>
impl<'tree> UnwindSafe for ForRangeLoop<'tree>
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