pub enum Expr {
Show 38 variants
This(ThisExpr),
Array(ArrayLit),
Object(ObjectLit),
Fn(FnExpr),
Unary(UnaryExpr),
Update(UpdateExpr),
Bin(BinExpr),
Assign(AssignExpr),
Member(MemberExpr),
SuperProp(SuperPropExpr),
Cond(CondExpr),
Call(CallExpr),
New(NewExpr),
Seq(SeqExpr),
Ident(Ident),
Lit(Lit),
Tpl(Tpl),
TaggedTpl(TaggedTpl),
Arrow(ArrowExpr),
Class(ClassExpr),
Yield(YieldExpr),
MetaProp(MetaPropExpr),
Await(AwaitExpr),
Paren(ParenExpr),
JSXMember(JSXMemberExpr),
JSXNamespacedName(JSXNamespacedName),
JSXEmpty(JSXEmptyExpr),
JSXElement(Box<JSXElement>),
JSXFragment(JSXFragment),
TsTypeAssertion(TsTypeAssertion),
TsConstAssertion(TsConstAssertion),
TsNonNull(TsNonNullExpr),
TsAs(TsAsExpr),
TsInstantiation(TsInstantiation),
TsSatisfies(TsSatisfiesExpr),
PrivateName(PrivateName),
OptChain(OptChainExpr),
Invalid(Invalid),
}__ecma and __visit only.Variants§
This(ThisExpr)
Array(ArrayLit)
Object(ObjectLit)
Fn(FnExpr)
Unary(UnaryExpr)
Update(UpdateExpr)
++v, --v, v++, v--
Bin(BinExpr)
Assign(AssignExpr)
Member(MemberExpr)
A member expression. If computed is true, the node corresponds to a computed (a[b]) member expression and property is an Expression. If computed is false, the node corresponds to a static (a.b) member expression and property is an Identifier.
SuperProp(SuperPropExpr)
Cond(CondExpr)
true ? ‘a’ : ‘b’
Call(CallExpr)
New(NewExpr)
new Cat()
Seq(SeqExpr)
Ident(Ident)
Lit(Lit)
Tpl(Tpl)
TaggedTpl(TaggedTpl)
Arrow(ArrowExpr)
Class(ClassExpr)
Yield(YieldExpr)
MetaProp(MetaPropExpr)
Await(AwaitExpr)
Paren(ParenExpr)
JSXMember(JSXMemberExpr)
JSXNamespacedName(JSXNamespacedName)
JSXEmpty(JSXEmptyExpr)
JSXElement(Box<JSXElement>)
JSXFragment(JSXFragment)
TsTypeAssertion(TsTypeAssertion)
TsConstAssertion(TsConstAssertion)
TsNonNull(TsNonNullExpr)
TsAs(TsAsExpr)
TsInstantiation(TsInstantiation)
TsSatisfies(TsSatisfiesExpr)
PrivateName(PrivateName)
OptChain(OptChainExpr)
Invalid(Invalid)
Implementations§
Source§impl Expr
impl Expr
Sourcepub const fn is_this(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_this(&self) -> bool
ecma_ast only.Returns true if self is of variant This.
Sourcepub fn as_this(&self) -> Option<&ThisExpr>
Available on crate feature ecma_ast only.
pub fn as_this(&self) -> Option<&ThisExpr>
ecma_ast only.Returns Some if self is a reference of variant This, and None otherwise.
Sourcepub fn as_mut_this(&mut self) -> Option<&mut ThisExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_this(&mut self) -> Option<&mut ThisExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant This, and None otherwise.
Sourcepub fn expect_this(self) -> ThisExpr
Available on crate feature ecma_ast only.
pub fn expect_this(self) -> ThisExpr
ecma_ast only.Sourcepub fn this(self) -> Option<ThisExpr>
Available on crate feature ecma_ast only.
pub fn this(self) -> Option<ThisExpr>
ecma_ast only.Returns Some if self is of variant This, and None otherwise.
Sourcepub const fn is_array(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_array(&self) -> bool
ecma_ast only.Returns true if self is of variant Array.
Sourcepub fn as_array(&self) -> Option<&ArrayLit>
Available on crate feature ecma_ast only.
pub fn as_array(&self) -> Option<&ArrayLit>
ecma_ast only.Returns Some if self is a reference of variant Array, and None otherwise.
Sourcepub fn as_mut_array(&mut self) -> Option<&mut ArrayLit>
Available on crate feature ecma_ast only.
pub fn as_mut_array(&mut self) -> Option<&mut ArrayLit>
ecma_ast only.Returns Some if self is a mutable reference of variant Array, and None otherwise.
Sourcepub fn expect_array(self) -> ArrayLit
Available on crate feature ecma_ast only.
pub fn expect_array(self) -> ArrayLit
ecma_ast only.Sourcepub fn array(self) -> Option<ArrayLit>
Available on crate feature ecma_ast only.
pub fn array(self) -> Option<ArrayLit>
ecma_ast only.Returns Some if self is of variant Array, and None otherwise.
Sourcepub const fn is_object(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_object(&self) -> bool
ecma_ast only.Returns true if self is of variant Object.
Sourcepub fn as_object(&self) -> Option<&ObjectLit>
Available on crate feature ecma_ast only.
pub fn as_object(&self) -> Option<&ObjectLit>
ecma_ast only.Returns Some if self is a reference of variant Object, and None otherwise.
Sourcepub fn as_mut_object(&mut self) -> Option<&mut ObjectLit>
Available on crate feature ecma_ast only.
pub fn as_mut_object(&mut self) -> Option<&mut ObjectLit>
ecma_ast only.Returns Some if self is a mutable reference of variant Object, and None otherwise.
Sourcepub fn expect_object(self) -> ObjectLit
Available on crate feature ecma_ast only.
pub fn expect_object(self) -> ObjectLit
ecma_ast only.Sourcepub fn object(self) -> Option<ObjectLit>
Available on crate feature ecma_ast only.
pub fn object(self) -> Option<ObjectLit>
ecma_ast only.Returns Some if self is of variant Object, and None otherwise.
Sourcepub const fn is_fn_expr(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_fn_expr(&self) -> bool
ecma_ast only.Returns true if self is of variant Fn.
Sourcepub fn as_fn_expr(&self) -> Option<&FnExpr>
Available on crate feature ecma_ast only.
pub fn as_fn_expr(&self) -> Option<&FnExpr>
ecma_ast only.Returns Some if self is a reference of variant Fn, and None otherwise.
Sourcepub fn as_mut_fn_expr(&mut self) -> Option<&mut FnExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_fn_expr(&mut self) -> Option<&mut FnExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant Fn, and None otherwise.
Sourcepub fn expect_fn_expr(self) -> FnExpr
Available on crate feature ecma_ast only.
pub fn expect_fn_expr(self) -> FnExpr
ecma_ast only.Sourcepub fn fn_expr(self) -> Option<FnExpr>
Available on crate feature ecma_ast only.
pub fn fn_expr(self) -> Option<FnExpr>
ecma_ast only.Returns Some if self is of variant Fn, and None otherwise.
Sourcepub const fn is_unary(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_unary(&self) -> bool
ecma_ast only.Returns true if self is of variant Unary.
Sourcepub fn as_unary(&self) -> Option<&UnaryExpr>
Available on crate feature ecma_ast only.
pub fn as_unary(&self) -> Option<&UnaryExpr>
ecma_ast only.Returns Some if self is a reference of variant Unary, and None otherwise.
Sourcepub fn as_mut_unary(&mut self) -> Option<&mut UnaryExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_unary(&mut self) -> Option<&mut UnaryExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant Unary, and None otherwise.
Sourcepub fn expect_unary(self) -> UnaryExpr
Available on crate feature ecma_ast only.
pub fn expect_unary(self) -> UnaryExpr
ecma_ast only.Sourcepub fn unary(self) -> Option<UnaryExpr>
Available on crate feature ecma_ast only.
pub fn unary(self) -> Option<UnaryExpr>
ecma_ast only.Returns Some if self is of variant Unary, and None otherwise.
Sourcepub const fn is_update(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_update(&self) -> bool
ecma_ast only.Returns true if self is of variant Update.
Sourcepub fn as_update(&self) -> Option<&UpdateExpr>
Available on crate feature ecma_ast only.
pub fn as_update(&self) -> Option<&UpdateExpr>
ecma_ast only.Returns Some if self is a reference of variant Update, and None otherwise.
Sourcepub fn as_mut_update(&mut self) -> Option<&mut UpdateExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_update(&mut self) -> Option<&mut UpdateExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant Update, and None otherwise.
Sourcepub fn expect_update(self) -> UpdateExpr
Available on crate feature ecma_ast only.
pub fn expect_update(self) -> UpdateExpr
ecma_ast only.Sourcepub fn update(self) -> Option<UpdateExpr>
Available on crate feature ecma_ast only.
pub fn update(self) -> Option<UpdateExpr>
ecma_ast only.Returns Some if self is of variant Update, and None otherwise.
Sourcepub const fn is_bin(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_bin(&self) -> bool
ecma_ast only.Returns true if self is of variant Bin.
Sourcepub fn as_bin(&self) -> Option<&BinExpr>
Available on crate feature ecma_ast only.
pub fn as_bin(&self) -> Option<&BinExpr>
ecma_ast only.Returns Some if self is a reference of variant Bin, and None otherwise.
Sourcepub fn as_mut_bin(&mut self) -> Option<&mut BinExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_bin(&mut self) -> Option<&mut BinExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant Bin, and None otherwise.
Sourcepub fn expect_bin(self) -> BinExpr
Available on crate feature ecma_ast only.
pub fn expect_bin(self) -> BinExpr
ecma_ast only.Sourcepub fn bin(self) -> Option<BinExpr>
Available on crate feature ecma_ast only.
pub fn bin(self) -> Option<BinExpr>
ecma_ast only.Returns Some if self is of variant Bin, and None otherwise.
Sourcepub const fn is_assign(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_assign(&self) -> bool
ecma_ast only.Returns true if self is of variant Assign.
Sourcepub fn as_assign(&self) -> Option<&AssignExpr>
Available on crate feature ecma_ast only.
pub fn as_assign(&self) -> Option<&AssignExpr>
ecma_ast only.Returns Some if self is a reference of variant Assign, and None otherwise.
Sourcepub fn as_mut_assign(&mut self) -> Option<&mut AssignExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_assign(&mut self) -> Option<&mut AssignExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant Assign, and None otherwise.
Sourcepub fn expect_assign(self) -> AssignExpr
Available on crate feature ecma_ast only.
pub fn expect_assign(self) -> AssignExpr
ecma_ast only.Sourcepub fn assign(self) -> Option<AssignExpr>
Available on crate feature ecma_ast only.
pub fn assign(self) -> Option<AssignExpr>
ecma_ast only.Returns Some if self is of variant Assign, and None otherwise.
Sourcepub const fn is_member(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_member(&self) -> bool
ecma_ast only.Returns true if self is of variant Member.
Sourcepub fn as_member(&self) -> Option<&MemberExpr>
Available on crate feature ecma_ast only.
pub fn as_member(&self) -> Option<&MemberExpr>
ecma_ast only.Returns Some if self is a reference of variant Member, and None otherwise.
Sourcepub fn as_mut_member(&mut self) -> Option<&mut MemberExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_member(&mut self) -> Option<&mut MemberExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant Member, and None otherwise.
Sourcepub fn expect_member(self) -> MemberExpr
Available on crate feature ecma_ast only.
pub fn expect_member(self) -> MemberExpr
ecma_ast only.Sourcepub fn member(self) -> Option<MemberExpr>
Available on crate feature ecma_ast only.
pub fn member(self) -> Option<MemberExpr>
ecma_ast only.Returns Some if self is of variant Member, and None otherwise.
Sourcepub const fn is_super_prop(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_super_prop(&self) -> bool
ecma_ast only.Returns true if self is of variant SuperProp.
Sourcepub fn as_super_prop(&self) -> Option<&SuperPropExpr>
Available on crate feature ecma_ast only.
pub fn as_super_prop(&self) -> Option<&SuperPropExpr>
ecma_ast only.Returns Some if self is a reference of variant SuperProp, and None otherwise.
Sourcepub fn as_mut_super_prop(&mut self) -> Option<&mut SuperPropExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_super_prop(&mut self) -> Option<&mut SuperPropExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant SuperProp, and None otherwise.
Sourcepub fn expect_super_prop(self) -> SuperPropExpr
Available on crate feature ecma_ast only.
pub fn expect_super_prop(self) -> SuperPropExpr
ecma_ast only.Sourcepub fn super_prop(self) -> Option<SuperPropExpr>
Available on crate feature ecma_ast only.
pub fn super_prop(self) -> Option<SuperPropExpr>
ecma_ast only.Returns Some if self is of variant SuperProp, and None otherwise.
Sourcepub const fn is_cond(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_cond(&self) -> bool
ecma_ast only.Returns true if self is of variant Cond.
Sourcepub fn as_cond(&self) -> Option<&CondExpr>
Available on crate feature ecma_ast only.
pub fn as_cond(&self) -> Option<&CondExpr>
ecma_ast only.Returns Some if self is a reference of variant Cond, and None otherwise.
Sourcepub fn as_mut_cond(&mut self) -> Option<&mut CondExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_cond(&mut self) -> Option<&mut CondExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant Cond, and None otherwise.
Sourcepub fn expect_cond(self) -> CondExpr
Available on crate feature ecma_ast only.
pub fn expect_cond(self) -> CondExpr
ecma_ast only.Sourcepub fn cond(self) -> Option<CondExpr>
Available on crate feature ecma_ast only.
pub fn cond(self) -> Option<CondExpr>
ecma_ast only.Returns Some if self is of variant Cond, and None otherwise.
Sourcepub const fn is_call(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_call(&self) -> bool
ecma_ast only.Returns true if self is of variant Call.
Sourcepub fn as_call(&self) -> Option<&CallExpr>
Available on crate feature ecma_ast only.
pub fn as_call(&self) -> Option<&CallExpr>
ecma_ast only.Returns Some if self is a reference of variant Call, and None otherwise.
Sourcepub fn as_mut_call(&mut self) -> Option<&mut CallExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_call(&mut self) -> Option<&mut CallExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant Call, and None otherwise.
Sourcepub fn expect_call(self) -> CallExpr
Available on crate feature ecma_ast only.
pub fn expect_call(self) -> CallExpr
ecma_ast only.Sourcepub fn call(self) -> Option<CallExpr>
Available on crate feature ecma_ast only.
pub fn call(self) -> Option<CallExpr>
ecma_ast only.Returns Some if self is of variant Call, and None otherwise.
Sourcepub const fn is_new(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_new(&self) -> bool
ecma_ast only.Returns true if self is of variant New.
Sourcepub fn as_new(&self) -> Option<&NewExpr>
Available on crate feature ecma_ast only.
pub fn as_new(&self) -> Option<&NewExpr>
ecma_ast only.Returns Some if self is a reference of variant New, and None otherwise.
Sourcepub fn as_mut_new(&mut self) -> Option<&mut NewExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_new(&mut self) -> Option<&mut NewExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant New, and None otherwise.
Sourcepub fn expect_new(self) -> NewExpr
Available on crate feature ecma_ast only.
pub fn expect_new(self) -> NewExpr
ecma_ast only.Sourcepub fn new(self) -> Option<NewExpr>
Available on crate feature ecma_ast only.
pub fn new(self) -> Option<NewExpr>
ecma_ast only.Returns Some if self is of variant New, and None otherwise.
Sourcepub const fn is_seq(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_seq(&self) -> bool
ecma_ast only.Returns true if self is of variant Seq.
Sourcepub fn as_seq(&self) -> Option<&SeqExpr>
Available on crate feature ecma_ast only.
pub fn as_seq(&self) -> Option<&SeqExpr>
ecma_ast only.Returns Some if self is a reference of variant Seq, and None otherwise.
Sourcepub fn as_mut_seq(&mut self) -> Option<&mut SeqExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_seq(&mut self) -> Option<&mut SeqExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant Seq, and None otherwise.
Sourcepub fn expect_seq(self) -> SeqExpr
Available on crate feature ecma_ast only.
pub fn expect_seq(self) -> SeqExpr
ecma_ast only.Sourcepub fn seq(self) -> Option<SeqExpr>
Available on crate feature ecma_ast only.
pub fn seq(self) -> Option<SeqExpr>
ecma_ast only.Returns Some if self is of variant Seq, and None otherwise.
Sourcepub const fn is_ident(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_ident(&self) -> bool
ecma_ast only.Returns true if self is of variant Ident.
Sourcepub fn as_ident(&self) -> Option<&Ident>
Available on crate feature ecma_ast only.
pub fn as_ident(&self) -> Option<&Ident>
ecma_ast only.Returns Some if self is a reference of variant Ident, and None otherwise.
Sourcepub fn as_mut_ident(&mut self) -> Option<&mut Ident>
Available on crate feature ecma_ast only.
pub fn as_mut_ident(&mut self) -> Option<&mut Ident>
ecma_ast only.Returns Some if self is a mutable reference of variant Ident, and None otherwise.
Sourcepub fn expect_ident(self) -> Ident
Available on crate feature ecma_ast only.
pub fn expect_ident(self) -> Ident
ecma_ast only.Sourcepub fn ident(self) -> Option<Ident>
Available on crate feature ecma_ast only.
pub fn ident(self) -> Option<Ident>
ecma_ast only.Returns Some if self is of variant Ident, and None otherwise.
Sourcepub const fn is_lit(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_lit(&self) -> bool
ecma_ast only.Returns true if self is of variant Lit.
Sourcepub fn as_lit(&self) -> Option<&Lit>
Available on crate feature ecma_ast only.
pub fn as_lit(&self) -> Option<&Lit>
ecma_ast only.Returns Some if self is a reference of variant Lit, and None otherwise.
Sourcepub fn as_mut_lit(&mut self) -> Option<&mut Lit>
Available on crate feature ecma_ast only.
pub fn as_mut_lit(&mut self) -> Option<&mut Lit>
ecma_ast only.Returns Some if self is a mutable reference of variant Lit, and None otherwise.
Sourcepub fn expect_lit(self) -> Lit
Available on crate feature ecma_ast only.
pub fn expect_lit(self) -> Lit
ecma_ast only.Sourcepub fn lit(self) -> Option<Lit>
Available on crate feature ecma_ast only.
pub fn lit(self) -> Option<Lit>
ecma_ast only.Returns Some if self is of variant Lit, and None otherwise.
Sourcepub const fn is_tpl(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_tpl(&self) -> bool
ecma_ast only.Returns true if self is of variant Tpl.
Sourcepub fn as_tpl(&self) -> Option<&Tpl>
Available on crate feature ecma_ast only.
pub fn as_tpl(&self) -> Option<&Tpl>
ecma_ast only.Returns Some if self is a reference of variant Tpl, and None otherwise.
Sourcepub fn as_mut_tpl(&mut self) -> Option<&mut Tpl>
Available on crate feature ecma_ast only.
pub fn as_mut_tpl(&mut self) -> Option<&mut Tpl>
ecma_ast only.Returns Some if self is a mutable reference of variant Tpl, and None otherwise.
Sourcepub fn expect_tpl(self) -> Tpl
Available on crate feature ecma_ast only.
pub fn expect_tpl(self) -> Tpl
ecma_ast only.Sourcepub fn tpl(self) -> Option<Tpl>
Available on crate feature ecma_ast only.
pub fn tpl(self) -> Option<Tpl>
ecma_ast only.Returns Some if self is of variant Tpl, and None otherwise.
Sourcepub const fn is_tagged_tpl(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_tagged_tpl(&self) -> bool
ecma_ast only.Returns true if self is of variant TaggedTpl.
Sourcepub fn as_tagged_tpl(&self) -> Option<&TaggedTpl>
Available on crate feature ecma_ast only.
pub fn as_tagged_tpl(&self) -> Option<&TaggedTpl>
ecma_ast only.Returns Some if self is a reference of variant TaggedTpl, and None otherwise.
Sourcepub fn as_mut_tagged_tpl(&mut self) -> Option<&mut TaggedTpl>
Available on crate feature ecma_ast only.
pub fn as_mut_tagged_tpl(&mut self) -> Option<&mut TaggedTpl>
ecma_ast only.Returns Some if self is a mutable reference of variant TaggedTpl, and None otherwise.
Sourcepub fn expect_tagged_tpl(self) -> TaggedTpl
Available on crate feature ecma_ast only.
pub fn expect_tagged_tpl(self) -> TaggedTpl
ecma_ast only.Sourcepub fn tagged_tpl(self) -> Option<TaggedTpl>
Available on crate feature ecma_ast only.
pub fn tagged_tpl(self) -> Option<TaggedTpl>
ecma_ast only.Returns Some if self is of variant TaggedTpl, and None otherwise.
Sourcepub const fn is_arrow(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_arrow(&self) -> bool
ecma_ast only.Returns true if self is of variant Arrow.
Sourcepub fn as_arrow(&self) -> Option<&ArrowExpr>
Available on crate feature ecma_ast only.
pub fn as_arrow(&self) -> Option<&ArrowExpr>
ecma_ast only.Returns Some if self is a reference of variant Arrow, and None otherwise.
Sourcepub fn as_mut_arrow(&mut self) -> Option<&mut ArrowExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_arrow(&mut self) -> Option<&mut ArrowExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant Arrow, and None otherwise.
Sourcepub fn expect_arrow(self) -> ArrowExpr
Available on crate feature ecma_ast only.
pub fn expect_arrow(self) -> ArrowExpr
ecma_ast only.Sourcepub fn arrow(self) -> Option<ArrowExpr>
Available on crate feature ecma_ast only.
pub fn arrow(self) -> Option<ArrowExpr>
ecma_ast only.Returns Some if self is of variant Arrow, and None otherwise.
Sourcepub const fn is_class(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_class(&self) -> bool
ecma_ast only.Returns true if self is of variant Class.
Sourcepub fn as_class(&self) -> Option<&ClassExpr>
Available on crate feature ecma_ast only.
pub fn as_class(&self) -> Option<&ClassExpr>
ecma_ast only.Returns Some if self is a reference of variant Class, and None otherwise.
Sourcepub fn as_mut_class(&mut self) -> Option<&mut ClassExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_class(&mut self) -> Option<&mut ClassExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant Class, and None otherwise.
Sourcepub fn expect_class(self) -> ClassExpr
Available on crate feature ecma_ast only.
pub fn expect_class(self) -> ClassExpr
ecma_ast only.Sourcepub fn class(self) -> Option<ClassExpr>
Available on crate feature ecma_ast only.
pub fn class(self) -> Option<ClassExpr>
ecma_ast only.Returns Some if self is of variant Class, and None otherwise.
Sourcepub const fn is_yield_expr(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_yield_expr(&self) -> bool
ecma_ast only.Returns true if self is of variant Yield.
Sourcepub fn as_yield_expr(&self) -> Option<&YieldExpr>
Available on crate feature ecma_ast only.
pub fn as_yield_expr(&self) -> Option<&YieldExpr>
ecma_ast only.Returns Some if self is a reference of variant Yield, and None otherwise.
Sourcepub fn as_mut_yield_expr(&mut self) -> Option<&mut YieldExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_yield_expr(&mut self) -> Option<&mut YieldExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant Yield, and None otherwise.
Sourcepub fn expect_yield_expr(self) -> YieldExpr
Available on crate feature ecma_ast only.
pub fn expect_yield_expr(self) -> YieldExpr
ecma_ast only.Sourcepub fn yield_expr(self) -> Option<YieldExpr>
Available on crate feature ecma_ast only.
pub fn yield_expr(self) -> Option<YieldExpr>
ecma_ast only.Returns Some if self is of variant Yield, and None otherwise.
Sourcepub const fn is_meta_prop(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_meta_prop(&self) -> bool
ecma_ast only.Returns true if self is of variant MetaProp.
Sourcepub fn as_meta_prop(&self) -> Option<&MetaPropExpr>
Available on crate feature ecma_ast only.
pub fn as_meta_prop(&self) -> Option<&MetaPropExpr>
ecma_ast only.Returns Some if self is a reference of variant MetaProp, and None otherwise.
Sourcepub fn as_mut_meta_prop(&mut self) -> Option<&mut MetaPropExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_meta_prop(&mut self) -> Option<&mut MetaPropExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant MetaProp, and None otherwise.
Sourcepub fn expect_meta_prop(self) -> MetaPropExpr
Available on crate feature ecma_ast only.
pub fn expect_meta_prop(self) -> MetaPropExpr
ecma_ast only.Sourcepub fn meta_prop(self) -> Option<MetaPropExpr>
Available on crate feature ecma_ast only.
pub fn meta_prop(self) -> Option<MetaPropExpr>
ecma_ast only.Returns Some if self is of variant MetaProp, and None otherwise.
Sourcepub const fn is_await_expr(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_await_expr(&self) -> bool
ecma_ast only.Returns true if self is of variant Await.
Sourcepub fn as_await_expr(&self) -> Option<&AwaitExpr>
Available on crate feature ecma_ast only.
pub fn as_await_expr(&self) -> Option<&AwaitExpr>
ecma_ast only.Returns Some if self is a reference of variant Await, and None otherwise.
Sourcepub fn as_mut_await_expr(&mut self) -> Option<&mut AwaitExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_await_expr(&mut self) -> Option<&mut AwaitExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant Await, and None otherwise.
Sourcepub fn expect_await_expr(self) -> AwaitExpr
Available on crate feature ecma_ast only.
pub fn expect_await_expr(self) -> AwaitExpr
ecma_ast only.Sourcepub fn await_expr(self) -> Option<AwaitExpr>
Available on crate feature ecma_ast only.
pub fn await_expr(self) -> Option<AwaitExpr>
ecma_ast only.Returns Some if self is of variant Await, and None otherwise.
Sourcepub const fn is_paren(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_paren(&self) -> bool
ecma_ast only.Returns true if self is of variant Paren.
Sourcepub fn as_paren(&self) -> Option<&ParenExpr>
Available on crate feature ecma_ast only.
pub fn as_paren(&self) -> Option<&ParenExpr>
ecma_ast only.Returns Some if self is a reference of variant Paren, and None otherwise.
Sourcepub fn as_mut_paren(&mut self) -> Option<&mut ParenExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_paren(&mut self) -> Option<&mut ParenExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant Paren, and None otherwise.
Sourcepub fn expect_paren(self) -> ParenExpr
Available on crate feature ecma_ast only.
pub fn expect_paren(self) -> ParenExpr
ecma_ast only.Sourcepub fn paren(self) -> Option<ParenExpr>
Available on crate feature ecma_ast only.
pub fn paren(self) -> Option<ParenExpr>
ecma_ast only.Returns Some if self is of variant Paren, and None otherwise.
Sourcepub const fn is_jsx_member(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_jsx_member(&self) -> bool
ecma_ast only.Returns true if self is of variant JSXMember.
Sourcepub fn as_jsx_member(&self) -> Option<&JSXMemberExpr>
Available on crate feature ecma_ast only.
pub fn as_jsx_member(&self) -> Option<&JSXMemberExpr>
ecma_ast only.Returns Some if self is a reference of variant JSXMember, and None otherwise.
Sourcepub fn as_mut_jsx_member(&mut self) -> Option<&mut JSXMemberExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_jsx_member(&mut self) -> Option<&mut JSXMemberExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant JSXMember, and None otherwise.
Sourcepub fn expect_jsx_member(self) -> JSXMemberExpr
Available on crate feature ecma_ast only.
pub fn expect_jsx_member(self) -> JSXMemberExpr
ecma_ast only.Sourcepub fn jsx_member(self) -> Option<JSXMemberExpr>
Available on crate feature ecma_ast only.
pub fn jsx_member(self) -> Option<JSXMemberExpr>
ecma_ast only.Returns Some if self is of variant JSXMember, and None otherwise.
Sourcepub const fn is_jsx_namespaced_name(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_jsx_namespaced_name(&self) -> bool
ecma_ast only.Returns true if self is of variant JSXNamespacedName.
Sourcepub fn as_jsx_namespaced_name(&self) -> Option<&JSXNamespacedName>
Available on crate feature ecma_ast only.
pub fn as_jsx_namespaced_name(&self) -> Option<&JSXNamespacedName>
ecma_ast only.Returns Some if self is a reference of variant JSXNamespacedName, and None otherwise.
Sourcepub fn as_mut_jsx_namespaced_name(&mut self) -> Option<&mut JSXNamespacedName>
Available on crate feature ecma_ast only.
pub fn as_mut_jsx_namespaced_name(&mut self) -> Option<&mut JSXNamespacedName>
ecma_ast only.Returns Some if self is a mutable reference of variant JSXNamespacedName, and None otherwise.
Sourcepub fn expect_jsx_namespaced_name(self) -> JSXNamespacedName
Available on crate feature ecma_ast only.
pub fn expect_jsx_namespaced_name(self) -> JSXNamespacedName
ecma_ast only.Unwraps the value, yielding the content of JSXNamespacedName.
§Panics
Panics if the value is not JSXNamespacedName, with a panic message including the content of self.
Sourcepub fn jsx_namespaced_name(self) -> Option<JSXNamespacedName>
Available on crate feature ecma_ast only.
pub fn jsx_namespaced_name(self) -> Option<JSXNamespacedName>
ecma_ast only.Returns Some if self is of variant JSXNamespacedName, and None otherwise.
Sourcepub const fn is_jsx_empty(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_jsx_empty(&self) -> bool
ecma_ast only.Returns true if self is of variant JSXEmpty.
Sourcepub fn as_jsx_empty(&self) -> Option<&JSXEmptyExpr>
Available on crate feature ecma_ast only.
pub fn as_jsx_empty(&self) -> Option<&JSXEmptyExpr>
ecma_ast only.Returns Some if self is a reference of variant JSXEmpty, and None otherwise.
Sourcepub fn as_mut_jsx_empty(&mut self) -> Option<&mut JSXEmptyExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_jsx_empty(&mut self) -> Option<&mut JSXEmptyExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant JSXEmpty, and None otherwise.
Sourcepub fn expect_jsx_empty(self) -> JSXEmptyExpr
Available on crate feature ecma_ast only.
pub fn expect_jsx_empty(self) -> JSXEmptyExpr
ecma_ast only.Sourcepub fn jsx_empty(self) -> Option<JSXEmptyExpr>
Available on crate feature ecma_ast only.
pub fn jsx_empty(self) -> Option<JSXEmptyExpr>
ecma_ast only.Returns Some if self is of variant JSXEmpty, and None otherwise.
Sourcepub const fn is_jsx_element(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_jsx_element(&self) -> bool
ecma_ast only.Returns true if self is of variant JSXElement.
Sourcepub fn as_jsx_element(&self) -> Option<&Box<JSXElement>>
Available on crate feature ecma_ast only.
pub fn as_jsx_element(&self) -> Option<&Box<JSXElement>>
ecma_ast only.Returns Some if self is a reference of variant JSXElement, and None otherwise.
Sourcepub fn as_mut_jsx_element(&mut self) -> Option<&mut Box<JSXElement>>
Available on crate feature ecma_ast only.
pub fn as_mut_jsx_element(&mut self) -> Option<&mut Box<JSXElement>>
ecma_ast only.Returns Some if self is a mutable reference of variant JSXElement, and None otherwise.
Sourcepub fn expect_jsx_element(self) -> Box<JSXElement>
Available on crate feature ecma_ast only.
pub fn expect_jsx_element(self) -> Box<JSXElement>
ecma_ast only.Unwraps the value, yielding the content of JSXElement.
§Panics
Panics if the value is not JSXElement, with a panic message including the content of self.
Sourcepub fn jsx_element(self) -> Option<Box<JSXElement>>
Available on crate feature ecma_ast only.
pub fn jsx_element(self) -> Option<Box<JSXElement>>
ecma_ast only.Returns Some if self is of variant JSXElement, and None otherwise.
Sourcepub const fn is_jsx_fragment(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_jsx_fragment(&self) -> bool
ecma_ast only.Returns true if self is of variant JSXFragment.
Sourcepub fn as_jsx_fragment(&self) -> Option<&JSXFragment>
Available on crate feature ecma_ast only.
pub fn as_jsx_fragment(&self) -> Option<&JSXFragment>
ecma_ast only.Returns Some if self is a reference of variant JSXFragment, and None otherwise.
Sourcepub fn as_mut_jsx_fragment(&mut self) -> Option<&mut JSXFragment>
Available on crate feature ecma_ast only.
pub fn as_mut_jsx_fragment(&mut self) -> Option<&mut JSXFragment>
ecma_ast only.Returns Some if self is a mutable reference of variant JSXFragment, and None otherwise.
Sourcepub fn expect_jsx_fragment(self) -> JSXFragment
Available on crate feature ecma_ast only.
pub fn expect_jsx_fragment(self) -> JSXFragment
ecma_ast only.Unwraps the value, yielding the content of JSXFragment.
§Panics
Panics if the value is not JSXFragment, with a panic message including the content of self.
Sourcepub fn jsx_fragment(self) -> Option<JSXFragment>
Available on crate feature ecma_ast only.
pub fn jsx_fragment(self) -> Option<JSXFragment>
ecma_ast only.Returns Some if self is of variant JSXFragment, and None otherwise.
Sourcepub const fn is_ts_type_assertion(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_ts_type_assertion(&self) -> bool
ecma_ast only.Returns true if self is of variant TsTypeAssertion.
Sourcepub fn as_ts_type_assertion(&self) -> Option<&TsTypeAssertion>
Available on crate feature ecma_ast only.
pub fn as_ts_type_assertion(&self) -> Option<&TsTypeAssertion>
ecma_ast only.Returns Some if self is a reference of variant TsTypeAssertion, and None otherwise.
Sourcepub fn as_mut_ts_type_assertion(&mut self) -> Option<&mut TsTypeAssertion>
Available on crate feature ecma_ast only.
pub fn as_mut_ts_type_assertion(&mut self) -> Option<&mut TsTypeAssertion>
ecma_ast only.Returns Some if self is a mutable reference of variant TsTypeAssertion, and None otherwise.
Sourcepub fn expect_ts_type_assertion(self) -> TsTypeAssertion
Available on crate feature ecma_ast only.
pub fn expect_ts_type_assertion(self) -> TsTypeAssertion
ecma_ast only.Unwraps the value, yielding the content of TsTypeAssertion.
§Panics
Panics if the value is not TsTypeAssertion, with a panic message including the content of self.
Sourcepub fn ts_type_assertion(self) -> Option<TsTypeAssertion>
Available on crate feature ecma_ast only.
pub fn ts_type_assertion(self) -> Option<TsTypeAssertion>
ecma_ast only.Returns Some if self is of variant TsTypeAssertion, and None otherwise.
Sourcepub const fn is_ts_const_assertion(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_ts_const_assertion(&self) -> bool
ecma_ast only.Returns true if self is of variant TsConstAssertion.
Sourcepub fn as_ts_const_assertion(&self) -> Option<&TsConstAssertion>
Available on crate feature ecma_ast only.
pub fn as_ts_const_assertion(&self) -> Option<&TsConstAssertion>
ecma_ast only.Returns Some if self is a reference of variant TsConstAssertion, and None otherwise.
Sourcepub fn as_mut_ts_const_assertion(&mut self) -> Option<&mut TsConstAssertion>
Available on crate feature ecma_ast only.
pub fn as_mut_ts_const_assertion(&mut self) -> Option<&mut TsConstAssertion>
ecma_ast only.Returns Some if self is a mutable reference of variant TsConstAssertion, and None otherwise.
Sourcepub fn expect_ts_const_assertion(self) -> TsConstAssertion
Available on crate feature ecma_ast only.
pub fn expect_ts_const_assertion(self) -> TsConstAssertion
ecma_ast only.Unwraps the value, yielding the content of TsConstAssertion.
§Panics
Panics if the value is not TsConstAssertion, with a panic message including the content of self.
Sourcepub fn ts_const_assertion(self) -> Option<TsConstAssertion>
Available on crate feature ecma_ast only.
pub fn ts_const_assertion(self) -> Option<TsConstAssertion>
ecma_ast only.Returns Some if self is of variant TsConstAssertion, and None otherwise.
Sourcepub const fn is_ts_non_null(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_ts_non_null(&self) -> bool
ecma_ast only.Returns true if self is of variant TsNonNull.
Sourcepub fn as_ts_non_null(&self) -> Option<&TsNonNullExpr>
Available on crate feature ecma_ast only.
pub fn as_ts_non_null(&self) -> Option<&TsNonNullExpr>
ecma_ast only.Returns Some if self is a reference of variant TsNonNull, and None otherwise.
Sourcepub fn as_mut_ts_non_null(&mut self) -> Option<&mut TsNonNullExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_ts_non_null(&mut self) -> Option<&mut TsNonNullExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant TsNonNull, and None otherwise.
Sourcepub fn expect_ts_non_null(self) -> TsNonNullExpr
Available on crate feature ecma_ast only.
pub fn expect_ts_non_null(self) -> TsNonNullExpr
ecma_ast only.Sourcepub fn ts_non_null(self) -> Option<TsNonNullExpr>
Available on crate feature ecma_ast only.
pub fn ts_non_null(self) -> Option<TsNonNullExpr>
ecma_ast only.Returns Some if self is of variant TsNonNull, and None otherwise.
Sourcepub const fn is_ts_as(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_ts_as(&self) -> bool
ecma_ast only.Returns true if self is of variant TsAs.
Sourcepub fn as_ts_as(&self) -> Option<&TsAsExpr>
Available on crate feature ecma_ast only.
pub fn as_ts_as(&self) -> Option<&TsAsExpr>
ecma_ast only.Returns Some if self is a reference of variant TsAs, and None otherwise.
Sourcepub fn as_mut_ts_as(&mut self) -> Option<&mut TsAsExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_ts_as(&mut self) -> Option<&mut TsAsExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant TsAs, and None otherwise.
Sourcepub fn expect_ts_as(self) -> TsAsExpr
Available on crate feature ecma_ast only.
pub fn expect_ts_as(self) -> TsAsExpr
ecma_ast only.Sourcepub fn ts_as(self) -> Option<TsAsExpr>
Available on crate feature ecma_ast only.
pub fn ts_as(self) -> Option<TsAsExpr>
ecma_ast only.Returns Some if self is of variant TsAs, and None otherwise.
Sourcepub const fn is_ts_instantiation(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_ts_instantiation(&self) -> bool
ecma_ast only.Returns true if self is of variant TsInstantiation.
Sourcepub fn as_ts_instantiation(&self) -> Option<&TsInstantiation>
Available on crate feature ecma_ast only.
pub fn as_ts_instantiation(&self) -> Option<&TsInstantiation>
ecma_ast only.Returns Some if self is a reference of variant TsInstantiation, and None otherwise.
Sourcepub fn as_mut_ts_instantiation(&mut self) -> Option<&mut TsInstantiation>
Available on crate feature ecma_ast only.
pub fn as_mut_ts_instantiation(&mut self) -> Option<&mut TsInstantiation>
ecma_ast only.Returns Some if self is a mutable reference of variant TsInstantiation, and None otherwise.
Sourcepub fn expect_ts_instantiation(self) -> TsInstantiation
Available on crate feature ecma_ast only.
pub fn expect_ts_instantiation(self) -> TsInstantiation
ecma_ast only.Unwraps the value, yielding the content of TsInstantiation.
§Panics
Panics if the value is not TsInstantiation, with a panic message including the content of self.
Sourcepub fn ts_instantiation(self) -> Option<TsInstantiation>
Available on crate feature ecma_ast only.
pub fn ts_instantiation(self) -> Option<TsInstantiation>
ecma_ast only.Returns Some if self is of variant TsInstantiation, and None otherwise.
Sourcepub const fn is_ts_satisfies(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_ts_satisfies(&self) -> bool
ecma_ast only.Returns true if self is of variant TsSatisfies.
Sourcepub fn as_ts_satisfies(&self) -> Option<&TsSatisfiesExpr>
Available on crate feature ecma_ast only.
pub fn as_ts_satisfies(&self) -> Option<&TsSatisfiesExpr>
ecma_ast only.Returns Some if self is a reference of variant TsSatisfies, and None otherwise.
Sourcepub fn as_mut_ts_satisfies(&mut self) -> Option<&mut TsSatisfiesExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_ts_satisfies(&mut self) -> Option<&mut TsSatisfiesExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant TsSatisfies, and None otherwise.
Sourcepub fn expect_ts_satisfies(self) -> TsSatisfiesExpr
Available on crate feature ecma_ast only.
pub fn expect_ts_satisfies(self) -> TsSatisfiesExpr
ecma_ast only.Unwraps the value, yielding the content of TsSatisfies.
§Panics
Panics if the value is not TsSatisfies, with a panic message including the content of self.
Sourcepub fn ts_satisfies(self) -> Option<TsSatisfiesExpr>
Available on crate feature ecma_ast only.
pub fn ts_satisfies(self) -> Option<TsSatisfiesExpr>
ecma_ast only.Returns Some if self is of variant TsSatisfies, and None otherwise.
Sourcepub const fn is_private_name(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_private_name(&self) -> bool
ecma_ast only.Returns true if self is of variant PrivateName.
Sourcepub fn as_private_name(&self) -> Option<&PrivateName>
Available on crate feature ecma_ast only.
pub fn as_private_name(&self) -> Option<&PrivateName>
ecma_ast only.Returns Some if self is a reference of variant PrivateName, and None otherwise.
Sourcepub fn as_mut_private_name(&mut self) -> Option<&mut PrivateName>
Available on crate feature ecma_ast only.
pub fn as_mut_private_name(&mut self) -> Option<&mut PrivateName>
ecma_ast only.Returns Some if self is a mutable reference of variant PrivateName, and None otherwise.
Sourcepub fn expect_private_name(self) -> PrivateName
Available on crate feature ecma_ast only.
pub fn expect_private_name(self) -> PrivateName
ecma_ast only.Unwraps the value, yielding the content of PrivateName.
§Panics
Panics if the value is not PrivateName, with a panic message including the content of self.
Sourcepub fn private_name(self) -> Option<PrivateName>
Available on crate feature ecma_ast only.
pub fn private_name(self) -> Option<PrivateName>
ecma_ast only.Returns Some if self is of variant PrivateName, and None otherwise.
Sourcepub const fn is_opt_chain(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_opt_chain(&self) -> bool
ecma_ast only.Returns true if self is of variant OptChain.
Sourcepub fn as_opt_chain(&self) -> Option<&OptChainExpr>
Available on crate feature ecma_ast only.
pub fn as_opt_chain(&self) -> Option<&OptChainExpr>
ecma_ast only.Returns Some if self is a reference of variant OptChain, and None otherwise.
Sourcepub fn as_mut_opt_chain(&mut self) -> Option<&mut OptChainExpr>
Available on crate feature ecma_ast only.
pub fn as_mut_opt_chain(&mut self) -> Option<&mut OptChainExpr>
ecma_ast only.Returns Some if self is a mutable reference of variant OptChain, and None otherwise.
Sourcepub fn expect_opt_chain(self) -> OptChainExpr
Available on crate feature ecma_ast only.
pub fn expect_opt_chain(self) -> OptChainExpr
ecma_ast only.Sourcepub fn opt_chain(self) -> Option<OptChainExpr>
Available on crate feature ecma_ast only.
pub fn opt_chain(self) -> Option<OptChainExpr>
ecma_ast only.Returns Some if self is of variant OptChain, and None otherwise.
Sourcepub const fn is_invalid(&self) -> bool
Available on crate feature ecma_ast only.
pub const fn is_invalid(&self) -> bool
ecma_ast only.Returns true if self is of variant Invalid.
Sourcepub fn as_invalid(&self) -> Option<&Invalid>
Available on crate feature ecma_ast only.
pub fn as_invalid(&self) -> Option<&Invalid>
ecma_ast only.Returns Some if self is a reference of variant Invalid, and None otherwise.
Sourcepub fn as_mut_invalid(&mut self) -> Option<&mut Invalid>
Available on crate feature ecma_ast only.
pub fn as_mut_invalid(&mut self) -> Option<&mut Invalid>
ecma_ast only.Returns Some if self is a mutable reference of variant Invalid, and None otherwise.
Sourcepub fn expect_invalid(self) -> Invalid
Available on crate feature ecma_ast only.
pub fn expect_invalid(self) -> Invalid
ecma_ast only.Source§impl Expr
impl Expr
Sourcepub fn undefined(span: Span) -> Box<Expr>
Available on crate feature ecma_ast only.
pub fn undefined(span: Span) -> Box<Expr>
ecma_ast only.Creates void 0.
pub fn is_null(&self) -> bool
ecma_ast only.pub fn leftmost(&self) -> Option<&Ident>
ecma_ast only.pub fn is_ident_ref_to<S>(&self, ident: &S) -> bool
ecma_ast only.Sourcepub fn unwrap_with<'a, F>(&'a self, op: F) -> &'a Expr
Available on crate feature ecma_ast only.
pub fn unwrap_with<'a, F>(&'a self, op: F) -> &'a Expr
ecma_ast only.Sourcepub fn unwrap_mut_with<'a, F>(&'a mut self, op: F) -> &'a mut Expr
Available on crate feature ecma_ast only.
pub fn unwrap_mut_with<'a, F>(&'a mut self, op: F) -> &'a mut Expr
ecma_ast only.Sourcepub fn unwrap_parens(&self) -> &Expr
Available on crate feature ecma_ast only.
pub fn unwrap_parens(&self) -> &Expr
ecma_ast only.Normalize parenthesized expressions.
This will normalize (foo), ((foo)), … to foo.
If self is not a parenthesized expression, it will be returned as is.
Sourcepub fn unwrap_parens_mut(&mut self) -> &mut Expr
Available on crate feature ecma_ast only.
pub fn unwrap_parens_mut(&mut self) -> &mut Expr
ecma_ast only.Normalize parenthesized expressions.
This will normalize (foo), ((foo)), … to foo.
If self is not a parenthesized expression, it will be returned as is.
Sourcepub fn unwrap_seqs_and_parens(&self) -> &Expr
Available on crate feature ecma_ast only.
pub fn unwrap_seqs_and_parens(&self) -> &Expr
ecma_ast only.Normalize sequences and parenthesized expressions.
This returns the last expression of a sequence expression or the expression of a parenthesized expression.
Sourcepub fn from_exprs(exprs: Vec<Box<Expr>>) -> Box<Expr>
Available on crate feature ecma_ast only.
pub fn from_exprs(exprs: Vec<Box<Expr>>) -> Box<Expr>
ecma_ast only.Creates an expression from exprs. This will return first element if
the length is 1 and a sequential expression otherwise.
§Panics
Panics if exprs is empty.
pub fn directness_maters(&self) -> bool
directness_matters insteadecma_ast only.Sourcepub fn directness_matters(&self) -> bool
Available on crate feature ecma_ast only.
pub fn directness_matters(&self) -> bool
ecma_ast only.Returns true for eval and member expressions.
pub fn with_span(self, span: Span) -> Expr
ecma_ast only.pub fn set_span(&mut self, span: Span)
ecma_ast only.Trait Implementations§
Source§impl EndsWithAlphaNum for Expr
impl EndsWithAlphaNum for Expr
fn ends_with_alpha_num(&self) -> bool
Source§impl EqIgnoreSpan for Expr
impl EqIgnoreSpan for Expr
fn eq_ignore_span(&self, other: &Expr) -> bool
Source§impl ExprExt for Box<Expr>
impl ExprExt for Box<Expr>
fn as_expr(&self) -> &Expr
Source§fn is_immutable_value(&self) -> bool
fn is_immutable_value(&self) -> bool
fn is_number(&self) -> bool
fn is_str(&self) -> bool
fn is_array_lit(&self) -> bool
fn is_undefined(&self, ctx: ExprCtx) -> bool
fn is_void(&self) -> bool
Source§fn is_global_ref_to(&self, ctx: ExprCtx, id: &str) -> bool
fn is_global_ref_to(&self, ctx: ExprCtx, id: &str) -> bool
true if id references a global object.Source§fn is_one_of_global_ref_to(&self, ctx: ExprCtx, ids: &[&str]) -> bool
fn is_one_of_global_ref_to(&self, ctx: ExprCtx, ids: &[&str]) -> bool
true if id references a global object.fn is_pure(&self, ctx: ExprCtx) -> bool
Source§fn as_pure_bool(&self, ctx: ExprCtx) -> Value<bool>
fn as_pure_bool(&self, ctx: ExprCtx) -> Value<bool>
self if it does not have any side effects.Source§fn cast_to_bool(&self, ctx: ExprCtx) -> (Purity, Value<bool>)
fn cast_to_bool(&self, ctx: ExprCtx) -> (Purity, Value<bool>)
Boolean() JavaScript cast function.
Note: unlike getPureBooleanValue this function does not return None
for expressions with side-effects.fn cast_to_number(&self, ctx: ExprCtx) -> (Purity, Value<f64>)
Source§fn as_pure_number(&self, ctx: ExprCtx) -> Value<f64>
fn as_pure_number(&self, ctx: ExprCtx) -> Value<f64>
Source§fn as_pure_string(&self, ctx: ExprCtx) -> Value<Cow<'_, str>>
fn as_pure_string(&self, ctx: ExprCtx) -> Value<Cow<'_, str>>
Source§fn get_type(&self, ctx: ExprCtx) -> Value<Type>
fn get_type(&self, ctx: ExprCtx) -> Value<Type>
fn is_pure_callee(&self, ctx: ExprCtx) -> bool
fn may_have_side_effects(&self, ctx: ExprCtx) -> bool
Source§impl ExprExt for Expr
impl ExprExt for Expr
fn as_expr(&self) -> &Expr
Source§fn is_immutable_value(&self) -> bool
fn is_immutable_value(&self) -> bool
fn is_number(&self) -> bool
fn is_str(&self) -> bool
fn is_array_lit(&self) -> bool
fn is_undefined(&self, ctx: ExprCtx) -> bool
fn is_void(&self) -> bool
Source§fn is_global_ref_to(&self, ctx: ExprCtx, id: &str) -> bool
fn is_global_ref_to(&self, ctx: ExprCtx, id: &str) -> bool
true if id references a global object.Source§fn is_one_of_global_ref_to(&self, ctx: ExprCtx, ids: &[&str]) -> bool
fn is_one_of_global_ref_to(&self, ctx: ExprCtx, ids: &[&str]) -> bool
true if id references a global object.fn is_pure(&self, ctx: ExprCtx) -> bool
Source§fn as_pure_bool(&self, ctx: ExprCtx) -> Value<bool>
fn as_pure_bool(&self, ctx: ExprCtx) -> Value<bool>
self if it does not have any side effects.Source§fn cast_to_bool(&self, ctx: ExprCtx) -> (Purity, Value<bool>)
fn cast_to_bool(&self, ctx: ExprCtx) -> (Purity, Value<bool>)
Boolean() JavaScript cast function.
Note: unlike getPureBooleanValue this function does not return None
for expressions with side-effects.fn cast_to_number(&self, ctx: ExprCtx) -> (Purity, Value<f64>)
Source§fn as_pure_number(&self, ctx: ExprCtx) -> Value<f64>
fn as_pure_number(&self, ctx: ExprCtx) -> Value<f64>
Source§fn as_pure_string(&self, ctx: ExprCtx) -> Value<Cow<'_, str>>
fn as_pure_string(&self, ctx: ExprCtx) -> Value<Cow<'_, str>>
Source§fn get_type(&self, ctx: ExprCtx) -> Value<Type>
fn get_type(&self, ctx: ExprCtx) -> Value<Type>
fn is_pure_callee(&self, ctx: ExprCtx) -> bool
fn may_have_side_effects(&self, ctx: ExprCtx) -> bool
Source§impl From<AssignExpr> for Expr
impl From<AssignExpr> for Expr
Source§fn from(v: AssignExpr) -> Expr
fn from(v: AssignExpr) -> Expr
Source§impl From<Expr> for ExprOrSpread
impl From<Expr> for ExprOrSpread
Source§fn from(src: Expr) -> ExprOrSpread
fn from(src: Expr) -> ExprOrSpread
Source§impl From<Expr> for VarDeclOrExpr
impl From<Expr> for VarDeclOrExpr
Source§fn from(src: Expr) -> VarDeclOrExpr
fn from(src: Expr) -> VarDeclOrExpr
Source§impl From<JSXEmptyExpr> for Expr
impl From<JSXEmptyExpr> for Expr
Source§fn from(v: JSXEmptyExpr) -> Expr
fn from(v: JSXEmptyExpr) -> Expr
Source§impl From<JSXFragment> for Expr
impl From<JSXFragment> for Expr
Source§fn from(v: JSXFragment) -> Expr
fn from(v: JSXFragment) -> Expr
Source§impl From<JSXMemberExpr> for Expr
impl From<JSXMemberExpr> for Expr
Source§fn from(v: JSXMemberExpr) -> Expr
fn from(v: JSXMemberExpr) -> Expr
Source§impl From<JSXNamespacedName> for Expr
impl From<JSXNamespacedName> for Expr
Source§fn from(v: JSXNamespacedName) -> Expr
fn from(v: JSXNamespacedName) -> Expr
Source§impl From<MemberExpr> for Expr
impl From<MemberExpr> for Expr
Source§fn from(v: MemberExpr) -> Expr
fn from(v: MemberExpr) -> Expr
Source§impl From<MetaPropExpr> for Expr
impl From<MetaPropExpr> for Expr
Source§fn from(v: MetaPropExpr) -> Expr
fn from(v: MetaPropExpr) -> Expr
Source§impl From<OptChainBase> for Expr
impl From<OptChainBase> for Expr
Source§fn from(opt: OptChainBase) -> Expr
fn from(opt: OptChainBase) -> Expr
Source§impl From<OptChainExpr> for Expr
impl From<OptChainExpr> for Expr
Source§fn from(v: OptChainExpr) -> Expr
fn from(v: OptChainExpr) -> Expr
Source§impl From<PrivateName> for Expr
impl From<PrivateName> for Expr
Source§fn from(v: PrivateName) -> Expr
fn from(v: PrivateName) -> Expr
Source§impl From<SuperPropExpr> for Expr
impl From<SuperPropExpr> for Expr
Source§fn from(v: SuperPropExpr) -> Expr
fn from(v: SuperPropExpr) -> Expr
Source§impl From<TsConstAssertion> for Expr
impl From<TsConstAssertion> for Expr
Source§fn from(v: TsConstAssertion) -> Expr
fn from(v: TsConstAssertion) -> Expr
Source§impl From<TsInstantiation> for Expr
impl From<TsInstantiation> for Expr
Source§fn from(v: TsInstantiation) -> Expr
fn from(v: TsInstantiation) -> Expr
Source§impl From<TsNonNullExpr> for Expr
impl From<TsNonNullExpr> for Expr
Source§fn from(v: TsNonNullExpr) -> Expr
fn from(v: TsNonNullExpr) -> Expr
Source§impl From<TsSatisfiesExpr> for Expr
impl From<TsSatisfiesExpr> for Expr
Source§fn from(v: TsSatisfiesExpr) -> Expr
fn from(v: TsSatisfiesExpr) -> Expr
Source§impl From<TsTypeAssertion> for Expr
impl From<TsTypeAssertion> for Expr
Source§fn from(v: TsTypeAssertion) -> Expr
fn from(v: TsTypeAssertion) -> Expr
Source§impl From<UpdateExpr> for Expr
impl From<UpdateExpr> for Expr
Source§fn from(v: UpdateExpr) -> Expr
fn from(v: UpdateExpr) -> Expr
Source§impl Node for Expr
impl Node for Expr
Source§impl OutputType for Box<Expr>
impl OutputType for Box<Expr>
const IS_IDENT_REQUIRED: bool = false
Source§fn is_fn_expr() -> bool
fn is_fn_expr() -> bool
fn finish_fn( _span: Span, ident: Option<Ident>, function: Box<Function>, ) -> Result<Box<Expr>, SyntaxError>
fn finish_class( _span: Span, ident: Option<Ident>, class: Box<Class>, ) -> Result<Box<Expr>, SyntaxError>
Source§impl StartsWithAlphaNum for Expr
impl StartsWithAlphaNum for Expr
fn starts_with_alpha_num(&self) -> bool
Source§impl<V> VisitMutWith<V> for Expr
impl<V> VisitMutWith<V> for Expr
Source§fn visit_mut_with(&mut self, visitor: &mut V)
fn visit_mut_with(&mut self, visitor: &mut V)
Calls VisitMut::visit_mut_expr with self.
Source§fn visit_mut_children_with(&mut self, visitor: &mut V)
fn visit_mut_children_with(&mut self, visitor: &mut V)
self`` with visitor`.Source§impl<V> VisitWith<V> for Expr
impl<V> VisitWith<V> for Expr
Source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_expr with self.
Source§fn visit_children_with(&self, visitor: &mut V)
fn visit_children_with(&self, visitor: &mut V)
self`` with visitor`.impl Eq for Expr
impl StructuralPartialEq for Expr
Auto Trait Implementations§
impl Freeze for Expr
impl RefUnwindSafe for Expr
impl Send for Expr
impl Sync for Expr
impl Unpin for Expr
impl UnwindSafe for Expr
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.Source§impl<T> ExprFactory for T
impl<T> ExprFactory for T
Source§fn as_arg(self) -> ExprOrSpread
fn as_arg(self) -> ExprOrSpread
Source§fn into_return_stmt(self) -> ReturnStmt
fn into_return_stmt(self) -> ReturnStmt
self.fn as_callee(self) -> Callee
fn as_iife(self) -> CallExpr
Source§fn into_lazy_arrow(self, params: Vec<Pat>) -> ArrowExpr
fn into_lazy_arrow(self, params: Vec<Pat>) -> ArrowExpr
Source§fn into_lazy_fn(self, params: Vec<Param>) -> Function
fn into_lazy_fn(self, params: Vec<Param>) -> Function
fn into_lazy_auto(self, params: Vec<Pat>, support_arrow: bool) -> Expr
Source§fn into_var_decl(self, kind: VarDeclKind, name: Pat) -> VarDecl
fn into_var_decl(self, kind: VarDeclKind, name: Pat) -> VarDecl
fn into_new_expr(self, span: Span, args: Option<Vec<ExprOrSpread>>) -> NewExpr
fn apply(self, span: Span, this: Box<Expr>, args: Vec<ExprOrSpread>) -> Expr
fn call_fn(self, span: Span, args: Vec<ExprOrSpread>) -> Expr
fn as_call(self, span: Span, args: Vec<ExprOrSpread>) -> Expr
fn as_fn_decl(self) -> Option<FnDecl>
fn as_class_decl(self) -> Option<ClassDecl>
fn wrap_with_paren(self) -> Expr
Source§fn make_assign_to(self, op: AssignOp, left: AssignTarget) -> Expr
fn make_assign_to(self, op: AssignOp, left: AssignTarget) -> Expr
$lhs $op $selffn make_member(self, prop: IdentName) -> MemberExpr
fn computed_member<T>(self, prop: T) -> MemberExpr
Source§impl<T> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self to use its Binary implementation when Debug-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self to use its Display implementation when
Debug-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self to use its Octal implementation when Debug-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.Source§impl<T> SpanExt for Twhere
T: Spanned,
impl<T> SpanExt for Twhere
T: Spanned,
fn is_synthesized(&self) -> bool
fn starts_on_new_line(&self, format: ListFormat) -> bool
Source§fn comment_range(&self) -> Span
fn comment_range(&self) -> Span
Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.Source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
Source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<T> ErasedDestructor for Twhere
T: 'static,
impl<T> MaybeSendSync for T
impl<T> Send for Twhere
T: ?Sized,
impl<T> Sync for Twhere
T: ?Sized,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 80 bytes
Size for each variant:
This: 12 bytesArray: 40 bytesObject: 40 bytesFn: 40 bytesUnary: 32 bytesUpdate: 32 bytesBin: 40 bytesAssign: 80 bytesMember: 48 bytesSuperProp: 48 bytesCond: 40 bytesCall: 72 bytesNew: 64 bytesSeq: 40 bytesIdent: 32 bytesLit: 40 bytesTpl: 64 bytesTaggedTpl: 48 bytesArrow: 72 bytesClass: 40 bytesYield: 32 bytesMetaProp: 16 bytesAwait: 24 bytesParen: 24 bytesJSXMember: 56 bytesJSXNamespacedName: 48 bytesJSXEmpty: 12 bytesJSXElement: 16 bytesJSXFragment: 56 bytesTsTypeAssertion: 32 bytesTsConstAssertion: 24 bytesTsNonNull: 24 bytesTsAs: 32 bytesTsInstantiation: 32 bytesTsSatisfies: 32 bytesPrivateName: 24 bytesOptChain: 32 bytesInvalid: 12 bytes