Enum swc_ecma_ast::Prop
source · [−]pub enum Prop {
Shorthand(Ident),
KeyValue(KeyValueProp),
Assign(AssignProp),
Getter(GetterProp),
Setter(SetterProp),
Method(MethodProp),
}
Variants
Shorthand(Ident)
a
in { a, }
KeyValue(KeyValueProp)
key: value
in { key: value, }
Assign(AssignProp)
This is invalid for object literal.
Getter(GetterProp)
Setter(SetterProp)
Method(MethodProp)
Implementations
sourceimpl Prop
impl Prop
sourcepub fn is_shorthand(&self) -> bool
pub fn is_shorthand(&self) -> bool
Returns true
if self
is of variant Shorthand
.
sourcepub fn as_shorthand(&self) -> Option<&Ident>
pub fn as_shorthand(&self) -> Option<&Ident>
Returns Some
if self
is a reference of variant Shorthand
, and None
otherwise.
sourcepub fn as_mut_shorthand(&mut self) -> Option<&mut Ident>
pub fn as_mut_shorthand(&mut self) -> Option<&mut Ident>
Returns Some
if self
is a mutable reference of variant Shorthand
, and None
otherwise.
sourcepub fn expect_shorthand(self) -> Identwhere
Self: Debug,
pub fn expect_shorthand(self) -> Identwhere
Self: Debug,
sourcepub fn shorthand(self) -> Option<Ident>
pub fn shorthand(self) -> Option<Ident>
Returns Some
if self
is of variant Shorthand
, and None
otherwise.
sourcepub fn is_key_value(&self) -> bool
pub fn is_key_value(&self) -> bool
Returns true
if self
is of variant KeyValue
.
sourcepub fn as_key_value(&self) -> Option<&KeyValueProp>
pub fn as_key_value(&self) -> Option<&KeyValueProp>
Returns Some
if self
is a reference of variant KeyValue
, and None
otherwise.
sourcepub fn as_mut_key_value(&mut self) -> Option<&mut KeyValueProp>
pub fn as_mut_key_value(&mut self) -> Option<&mut KeyValueProp>
Returns Some
if self
is a mutable reference of variant KeyValue
, and None
otherwise.
sourcepub fn expect_key_value(self) -> KeyValuePropwhere
Self: Debug,
pub fn expect_key_value(self) -> KeyValuePropwhere
Self: Debug,
sourcepub fn key_value(self) -> Option<KeyValueProp>
pub fn key_value(self) -> Option<KeyValueProp>
Returns Some
if self
is of variant KeyValue
, and None
otherwise.
sourcepub fn as_assign(&self) -> Option<&AssignProp>
pub fn as_assign(&self) -> Option<&AssignProp>
Returns Some
if self
is a reference of variant Assign
, and None
otherwise.
sourcepub fn as_mut_assign(&mut self) -> Option<&mut AssignProp>
pub fn as_mut_assign(&mut self) -> Option<&mut AssignProp>
Returns Some
if self
is a mutable reference of variant Assign
, and None
otherwise.
sourcepub fn expect_assign(self) -> AssignPropwhere
Self: Debug,
pub fn expect_assign(self) -> AssignPropwhere
Self: Debug,
sourcepub fn assign(self) -> Option<AssignProp>
pub fn assign(self) -> Option<AssignProp>
Returns Some
if self
is of variant Assign
, and None
otherwise.
sourcepub fn as_getter(&self) -> Option<&GetterProp>
pub fn as_getter(&self) -> Option<&GetterProp>
Returns Some
if self
is a reference of variant Getter
, and None
otherwise.
sourcepub fn as_mut_getter(&mut self) -> Option<&mut GetterProp>
pub fn as_mut_getter(&mut self) -> Option<&mut GetterProp>
Returns Some
if self
is a mutable reference of variant Getter
, and None
otherwise.
sourcepub fn expect_getter(self) -> GetterPropwhere
Self: Debug,
pub fn expect_getter(self) -> GetterPropwhere
Self: Debug,
sourcepub fn getter(self) -> Option<GetterProp>
pub fn getter(self) -> Option<GetterProp>
Returns Some
if self
is of variant Getter
, and None
otherwise.
sourcepub fn as_setter(&self) -> Option<&SetterProp>
pub fn as_setter(&self) -> Option<&SetterProp>
Returns Some
if self
is a reference of variant Setter
, and None
otherwise.
sourcepub fn as_mut_setter(&mut self) -> Option<&mut SetterProp>
pub fn as_mut_setter(&mut self) -> Option<&mut SetterProp>
Returns Some
if self
is a mutable reference of variant Setter
, and None
otherwise.
sourcepub fn expect_setter(self) -> SetterPropwhere
Self: Debug,
pub fn expect_setter(self) -> SetterPropwhere
Self: Debug,
sourcepub fn setter(self) -> Option<SetterProp>
pub fn setter(self) -> Option<SetterProp>
Returns Some
if self
is of variant Setter
, and None
otherwise.
sourcepub fn as_method(&self) -> Option<&MethodProp>
pub fn as_method(&self) -> Option<&MethodProp>
Returns Some
if self
is a reference of variant Method
, and None
otherwise.
sourcepub fn as_mut_method(&mut self) -> Option<&mut MethodProp>
pub fn as_mut_method(&mut self) -> Option<&mut MethodProp>
Returns Some
if self
is a mutable reference of variant Method
, and None
otherwise.
sourcepub fn expect_method(self) -> MethodPropwhere
Self: Debug,
pub fn expect_method(self) -> MethodPropwhere
Self: Debug,
sourcepub fn method(self) -> Option<MethodProp>
pub fn method(self) -> Option<MethodProp>
Returns Some
if self
is of variant Method
, and None
otherwise.
Trait Implementations
sourceimpl Archive for Prop
impl Archive for Prop
sourceimpl<'de> Deserialize<'de> for Prop
impl<'de> Deserialize<'de> for Prop
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<Prop, __D> for Archived<Prop>where
__D: SharedDeserializeRegistry,
impl<__D: Fallible + ?Sized> Deserialize<Prop, __D> for Archived<Prop>where
__D: SharedDeserializeRegistry,
sourceimpl EqIgnoreSpan for Prop
impl EqIgnoreSpan for Prop
fn eq_ignore_span(&self, other: &Self) -> bool
sourceimpl From<AssignProp> for Prop
impl From<AssignProp> for Prop
sourcefn from(v: AssignProp) -> Self
fn from(v: AssignProp) -> Self
sourceimpl From<GetterProp> for Prop
impl From<GetterProp> for Prop
sourcefn from(v: GetterProp) -> Self
fn from(v: GetterProp) -> Self
sourceimpl From<KeyValueProp> for Prop
impl From<KeyValueProp> for Prop
sourcefn from(v: KeyValueProp) -> Self
fn from(v: KeyValueProp) -> Self
sourceimpl From<MethodProp> for Prop
impl From<MethodProp> for Prop
sourcefn from(v: MethodProp) -> Self
fn from(v: MethodProp) -> Self
sourceimpl From<Prop> for PropOrSpread
impl From<Prop> for PropOrSpread
sourcefn from(src: Prop) -> PropOrSpread
fn from(src: Prop) -> PropOrSpread
sourceimpl From<SetterProp> for Prop
impl From<SetterProp> for Prop
sourcefn from(v: SetterProp) -> Self
fn from(v: SetterProp) -> Self
sourceimpl<__S: Fallible + ?Sized> Serialize<__S> for Propwhere
__S: Serializer + ScratchSpace + SharedSerializeRegistry,
impl<__S: Fallible + ?Sized> Serialize<__S> for Propwhere
__S: Serializer + ScratchSpace + SharedSerializeRegistry,
impl Eq for Prop
impl StructuralEq for Prop
impl StructuralPartialEq for Prop
Auto Trait Implementations
impl RefUnwindSafe for Prop
impl Send for Prop
impl Sync for Prop
impl Unpin for Prop
impl UnwindSafe for Prop
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