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