#[repr(C)]pub struct EnumBigIntMember<'gc> {
pub metadata: NodeMetadata<'gc>,
pub id: &'gc Node<'gc>,
pub init: &'gc Node<'gc>,
}Expand description
The EnumBigIntMember AST node.
Fields§
§metadata: NodeMetadata<'gc>Source range, debug location, paren count, and node id.
id: &'gc Node<'gc>ESTree id property.
init: &'gc Node<'gc>ESTree init property.
Implementations§
Source§impl<'gc> EnumBigIntMember<'gc>
impl<'gc> EnumBigIntMember<'gc>
Sourcepub fn new(
metadata: NodeMetadata<'gc>,
id: &'gc Node<'gc>,
init: &'gc Node<'gc>,
) -> Self
pub fn new( metadata: NodeMetadata<'gc>, id: &'gc Node<'gc>, init: &'gc Node<'gc>, ) -> Self
Build EnumBigIntMember from its metadata and ESTree.def fields.
Trait Implementations§
Auto Trait Implementations§
impl<'gc> !Freeze for EnumBigIntMember<'gc>
impl<'gc> !RefUnwindSafe for EnumBigIntMember<'gc>
impl<'gc> !Send for EnumBigIntMember<'gc>
impl<'gc> !Sync for EnumBigIntMember<'gc>
impl<'gc> !UnwindSafe for EnumBigIntMember<'gc>
impl<'gc> Unpin for EnumBigIntMember<'gc>
impl<'gc> UnsafeUnpin for EnumBigIntMember<'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