pub struct AccessorDeclaration<'tree> {
pub span: Span,
pub body: Option<AccessorDeclarationBody<'tree>>,
pub name: AccessorDeclarationName<'tree>,
pub children: Vec<AccessorDeclarationChildren<'tree>>,
}Fields§
§span: Span§body: Option<AccessorDeclarationBody<'tree>>§name: AccessorDeclarationName<'tree>§children: Vec<AccessorDeclarationChildren<'tree>>Trait Implementations§
Source§impl<'tree> Clone for AccessorDeclaration<'tree>
impl<'tree> Clone for AccessorDeclaration<'tree>
Source§fn clone(&self) -> AccessorDeclaration<'tree>
fn clone(&self) -> AccessorDeclaration<'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 AccessorDeclaration<'tree>
impl<'tree> Debug for AccessorDeclaration<'tree>
impl<'tree> Eq for AccessorDeclaration<'tree>
Source§impl<'tree> FromNode<'tree> for AccessorDeclaration<'tree>
impl<'tree> FromNode<'tree> for AccessorDeclaration<'tree>
Source§impl<'tree> PartialEq for AccessorDeclaration<'tree>
impl<'tree> PartialEq for AccessorDeclaration<'tree>
Source§impl Spanned for AccessorDeclaration<'_>
impl Spanned for AccessorDeclaration<'_>
impl<'tree> StructuralPartialEq for AccessorDeclaration<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for AccessorDeclaration<'tree>
impl<'tree> RefUnwindSafe for AccessorDeclaration<'tree>
impl<'tree> Send for AccessorDeclaration<'tree>
impl<'tree> Sync for AccessorDeclaration<'tree>
impl<'tree> Unpin for AccessorDeclaration<'tree>
impl<'tree> UnsafeUnpin for AccessorDeclaration<'tree>
impl<'tree> UnwindSafe for AccessorDeclaration<'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