pub enum LabeledStatementChildren<'tree> {
Identifier(Box<Identifier<'tree>>),
Statement(Box<Statement<'tree>>),
}Variants§
Trait Implementations§
Source§impl<'tree> Clone for LabeledStatementChildren<'tree>
impl<'tree> Clone for LabeledStatementChildren<'tree>
Source§fn clone(&self) -> LabeledStatementChildren<'tree>
fn clone(&self) -> LabeledStatementChildren<'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 LabeledStatementChildren<'tree>
impl<'tree> Debug for LabeledStatementChildren<'tree>
Source§impl<'tree> FromNode<'tree> for LabeledStatementChildren<'tree>
impl<'tree> FromNode<'tree> for LabeledStatementChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for LabeledStatementChildren<'tree>
impl<'tree> RefUnwindSafe for LabeledStatementChildren<'tree>
impl<'tree> Send for LabeledStatementChildren<'tree>
impl<'tree> Sync for LabeledStatementChildren<'tree>
impl<'tree> Unpin for LabeledStatementChildren<'tree>
impl<'tree> UnsafeUnpin for LabeledStatementChildren<'tree>
impl<'tree> UnwindSafe for LabeledStatementChildren<'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