Enum swc_ecma_ast::PropName
source · [−]pub enum PropName {
Ident(Ident),
Str(Str),
Num(Number),
Computed(ComputedPropName),
BigInt(BigInt),
}
Variants
Ident(Ident)
Str(Str)
String literal.
Num(Number)
Numeric literal.
Computed(ComputedPropName)
BigInt(BigInt)
Implementations
sourceimpl PropName
impl PropName
sourcepub fn as_ident(&self) -> Option<&Ident>
pub fn as_ident(&self) -> Option<&Ident>
Returns Some
if self
is a reference of variant Ident
, and None
otherwise.
sourcepub fn as_mut_ident(&mut self) -> Option<&mut Ident>
pub fn as_mut_ident(&mut self) -> Option<&mut Ident>
Returns Some
if self
is a mutable reference of variant Ident
, and None
otherwise.
sourcepub fn expect_ident(self) -> Identwhere
Self: Debug,
pub fn expect_ident(self) -> Identwhere
Self: Debug,
sourcepub fn ident(self) -> Option<Ident>
pub fn ident(self) -> Option<Ident>
Returns Some
if self
is of variant Ident
, and None
otherwise.
sourcepub fn as_str(&self) -> Option<&Str>
pub fn as_str(&self) -> Option<&Str>
Returns Some
if self
is a reference of variant Str
, and None
otherwise.
sourcepub fn as_mut_str(&mut self) -> Option<&mut Str>
pub fn as_mut_str(&mut self) -> Option<&mut Str>
Returns Some
if self
is a mutable reference of variant Str
, and None
otherwise.
sourcepub fn expect_str(self) -> Strwhere
Self: Debug,
pub fn expect_str(self) -> Strwhere
Self: Debug,
sourcepub fn as_num(&self) -> Option<&Number>
pub fn as_num(&self) -> Option<&Number>
Returns Some
if self
is a reference of variant Num
, and None
otherwise.
sourcepub fn as_mut_num(&mut self) -> Option<&mut Number>
pub fn as_mut_num(&mut self) -> Option<&mut Number>
Returns Some
if self
is a mutable reference of variant Num
, and None
otherwise.
sourcepub fn expect_num(self) -> Numberwhere
Self: Debug,
pub fn expect_num(self) -> Numberwhere
Self: Debug,
sourcepub fn is_computed(&self) -> bool
pub fn is_computed(&self) -> bool
Returns true
if self
is of variant Computed
.
sourcepub fn as_computed(&self) -> Option<&ComputedPropName>
pub fn as_computed(&self) -> Option<&ComputedPropName>
Returns Some
if self
is a reference of variant Computed
, and None
otherwise.
sourcepub fn as_mut_computed(&mut self) -> Option<&mut ComputedPropName>
pub fn as_mut_computed(&mut self) -> Option<&mut ComputedPropName>
Returns Some
if self
is a mutable reference of variant Computed
, and None
otherwise.
sourcepub fn expect_computed(self) -> ComputedPropNamewhere
Self: Debug,
pub fn expect_computed(self) -> ComputedPropNamewhere
Self: Debug,
sourcepub fn computed(self) -> Option<ComputedPropName>
pub fn computed(self) -> Option<ComputedPropName>
Returns Some
if self
is of variant Computed
, and None
otherwise.
sourcepub fn is_big_int(&self) -> bool
pub fn is_big_int(&self) -> bool
Returns true
if self
is of variant BigInt
.
sourcepub fn as_big_int(&self) -> Option<&BigInt>
pub fn as_big_int(&self) -> Option<&BigInt>
Returns Some
if self
is a reference of variant BigInt
, and None
otherwise.
sourcepub fn as_mut_big_int(&mut self) -> Option<&mut BigInt>
pub fn as_mut_big_int(&mut self) -> Option<&mut BigInt>
Returns Some
if self
is a mutable reference of variant BigInt
, and None
otherwise.
sourcepub fn expect_big_int(self) -> BigIntwhere
Self: Debug,
pub fn expect_big_int(self) -> BigIntwhere
Self: Debug,
Trait Implementations
sourceimpl Archive for PropName
impl Archive for PropName
sourceimpl<'de> Deserialize<'de> for PropName
impl<'de> Deserialize<'de> for PropName
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
sourceimpl<__D: Fallible + ?Sized> Deserialize<PropName, __D> for Archived<PropName>where
__D: SharedDeserializeRegistry,
impl<__D: Fallible + ?Sized> Deserialize<PropName, __D> for Archived<PropName>where
__D: SharedDeserializeRegistry,
sourceimpl EqIgnoreSpan for PropName
impl EqIgnoreSpan for PropName
fn eq_ignore_span(&self, other: &Self) -> bool
sourceimpl From<(Atom<JsWordStaticSet>, SyntaxContext)> for PropName
impl From<(Atom<JsWordStaticSet>, SyntaxContext)> for PropName
sourceimpl From<ComputedPropName> for PropName
impl From<ComputedPropName> for PropName
sourcefn from(v: ComputedPropName) -> Self
fn from(v: ComputedPropName) -> Self
sourceimpl From<PropName> for MemberProp
impl From<PropName> for MemberProp
sourceimpl<__S: Fallible + ?Sized> Serialize<__S> for PropNamewhere
__S: Serializer + ScratchSpace + SharedSerializeRegistry,
impl<__S: Fallible + ?Sized> Serialize<__S> for PropNamewhere
__S: Serializer + ScratchSpace + SharedSerializeRegistry,
impl Eq for PropName
impl StructuralEq for PropName
impl StructuralPartialEq for PropName
Auto Trait Implementations
impl RefUnwindSafe for PropName
impl Send for PropName
impl Sync for PropName
impl Unpin for PropName
impl UnwindSafe for PropName
Blanket Implementations
sourceimpl<T> ArchivePointee for T
impl<T> ArchivePointee for T
type ArchivedMetadata = ()
type ArchivedMetadata = ()
sourcefn pointer_metadata(
&<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
fn pointer_metadata(
&<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
sourceimpl<T> ArchiveUnsized for Twhere
T: Archive,
impl<T> ArchiveUnsized for Twhere
T: Archive,
type Archived = <T as Archive>::Archived
type Archived = <T as Archive>::Archived
Archive
, it may be unsized. Read more