pub struct RepeatStatement<'tree> {
pub span: Span,
pub body: Option<Block<'tree>>,
pub condition: Expression<'tree>,
}Fields§
§span: Span§body: Option<Block<'tree>>§condition: Expression<'tree>Trait Implementations§
Source§impl<'tree> Clone for RepeatStatement<'tree>
impl<'tree> Clone for RepeatStatement<'tree>
Source§fn clone(&self) -> RepeatStatement<'tree>
fn clone(&self) -> RepeatStatement<'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 RepeatStatement<'tree>
impl<'tree> Debug for RepeatStatement<'tree>
Source§impl<'tree> FromNode<'tree> for RepeatStatement<'tree>
impl<'tree> FromNode<'tree> for RepeatStatement<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for RepeatStatement<'tree>
impl<'tree> RefUnwindSafe for RepeatStatement<'tree>
impl<'tree> Send for RepeatStatement<'tree>
impl<'tree> Sync for RepeatStatement<'tree>
impl<'tree> Unpin for RepeatStatement<'tree>
impl<'tree> UnsafeUnpin for RepeatStatement<'tree>
impl<'tree> UnwindSafe for RepeatStatement<'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