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