pub enum AccessorDeclarationName<'tree> {
Add(Span),
Get(Span),
Identifier(Box<Identifier<'tree>>),
Init(Span),
Remove(Span),
Set(Span),
}Variants§
Trait Implementations§
Source§impl<'tree> Clone for AccessorDeclarationName<'tree>
impl<'tree> Clone for AccessorDeclarationName<'tree>
Source§fn clone(&self) -> AccessorDeclarationName<'tree>
fn clone(&self) -> AccessorDeclarationName<'tree>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AccessorDeclarationName<'tree>
impl<'tree> Debug for AccessorDeclarationName<'tree>
impl<'tree> Eq for AccessorDeclarationName<'tree>
Source§impl<'tree> FromNode<'tree> for AccessorDeclarationName<'tree>
impl<'tree> FromNode<'tree> for AccessorDeclarationName<'tree>
Source§impl<'tree> PartialEq for AccessorDeclarationName<'tree>
impl<'tree> PartialEq for AccessorDeclarationName<'tree>
Source§impl Spanned for AccessorDeclarationName<'_>
impl Spanned for AccessorDeclarationName<'_>
impl<'tree> StructuralPartialEq for AccessorDeclarationName<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for AccessorDeclarationName<'tree>
impl<'tree> RefUnwindSafe for AccessorDeclarationName<'tree>
impl<'tree> Send for AccessorDeclarationName<'tree>
impl<'tree> Sync for AccessorDeclarationName<'tree>
impl<'tree> Unpin for AccessorDeclarationName<'tree>
impl<'tree> UnsafeUnpin for AccessorDeclarationName<'tree>
impl<'tree> UnwindSafe for AccessorDeclarationName<'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