#[repr(C)]pub struct CoverTypedIdentifier<'gc> {
pub metadata: NodeMetadata<'gc>,
pub left: &'gc Node<'gc>,
pub right: Option<&'gc Node<'gc>>,
pub optional: Cell<bool>,
}Expand description
The CoverTypedIdentifier AST node.
Fields§
§metadata: NodeMetadata<'gc>Source range, debug location, paren count, and node id.
left: &'gc Node<'gc>ESTree left property.
right: Option<&'gc Node<'gc>>ESTree right property.
optional: Cell<bool>ESTree optional property.
Implementations§
Source§impl<'gc> CoverTypedIdentifier<'gc>
impl<'gc> CoverTypedIdentifier<'gc>
Trait Implementations§
Auto Trait Implementations§
impl<'gc> !Freeze for CoverTypedIdentifier<'gc>
impl<'gc> !RefUnwindSafe for CoverTypedIdentifier<'gc>
impl<'gc> !Send for CoverTypedIdentifier<'gc>
impl<'gc> !Sync for CoverTypedIdentifier<'gc>
impl<'gc> !UnwindSafe for CoverTypedIdentifier<'gc>
impl<'gc> Unpin for CoverTypedIdentifier<'gc>
impl<'gc> UnsafeUnpin for CoverTypedIdentifier<'gc>
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