pub enum NestedIdentifierObject<'tree> {
Identifier(Box<Identifier<'tree>>),
MemberExpression(Box<MemberExpression<'tree>>),
}Variants§
Identifier(Box<Identifier<'tree>>)
MemberExpression(Box<MemberExpression<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for NestedIdentifierObject<'tree>
impl<'tree> Clone for NestedIdentifierObject<'tree>
Source§fn clone(&self) -> NestedIdentifierObject<'tree>
fn clone(&self) -> NestedIdentifierObject<'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 NestedIdentifierObject<'tree>
impl<'tree> Debug for NestedIdentifierObject<'tree>
impl<'tree> Eq for NestedIdentifierObject<'tree>
Source§impl<'tree> FromNode<'tree> for NestedIdentifierObject<'tree>
impl<'tree> FromNode<'tree> for NestedIdentifierObject<'tree>
Source§impl<'tree> PartialEq for NestedIdentifierObject<'tree>
impl<'tree> PartialEq for NestedIdentifierObject<'tree>
Source§impl Spanned for NestedIdentifierObject<'_>
impl Spanned for NestedIdentifierObject<'_>
impl<'tree> StructuralPartialEq for NestedIdentifierObject<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for NestedIdentifierObject<'tree>
impl<'tree> RefUnwindSafe for NestedIdentifierObject<'tree>
impl<'tree> Send for NestedIdentifierObject<'tree>
impl<'tree> Sync for NestedIdentifierObject<'tree>
impl<'tree> Unpin for NestedIdentifierObject<'tree>
impl<'tree> UnsafeUnpin for NestedIdentifierObject<'tree>
impl<'tree> UnwindSafe for NestedIdentifierObject<'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