pub enum ConstDeclarationChildren<'tree> {
AbstractModifier(Box<AbstractModifier<'tree>>),
ConstElement(Box<ConstElement<'tree>>),
FinalModifier(Box<FinalModifier<'tree>>),
ReadonlyModifier(Box<ReadonlyModifier<'tree>>),
StaticModifier(Box<StaticModifier<'tree>>),
VarModifier(Box<VarModifier<'tree>>),
VisibilityModifier(Box<VisibilityModifier<'tree>>),
}Variants§
AbstractModifier(Box<AbstractModifier<'tree>>)
ConstElement(Box<ConstElement<'tree>>)
FinalModifier(Box<FinalModifier<'tree>>)
ReadonlyModifier(Box<ReadonlyModifier<'tree>>)
StaticModifier(Box<StaticModifier<'tree>>)
VarModifier(Box<VarModifier<'tree>>)
VisibilityModifier(Box<VisibilityModifier<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for ConstDeclarationChildren<'tree>
impl<'tree> Clone for ConstDeclarationChildren<'tree>
Source§fn clone(&self) -> ConstDeclarationChildren<'tree>
fn clone(&self) -> ConstDeclarationChildren<'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 ConstDeclarationChildren<'tree>
impl<'tree> Debug for ConstDeclarationChildren<'tree>
Source§impl<'tree> FromNode<'tree> for ConstDeclarationChildren<'tree>
impl<'tree> FromNode<'tree> for ConstDeclarationChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for ConstDeclarationChildren<'tree>
impl<'tree> RefUnwindSafe for ConstDeclarationChildren<'tree>
impl<'tree> Send for ConstDeclarationChildren<'tree>
impl<'tree> Sync for ConstDeclarationChildren<'tree>
impl<'tree> Unpin for ConstDeclarationChildren<'tree>
impl<'tree> UnsafeUnpin for ConstDeclarationChildren<'tree>
impl<'tree> UnwindSafe for ConstDeclarationChildren<'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