Enum swc_ecma_ast::ObjectPatProp
source · [−]pub enum ObjectPatProp {
KeyValue(KeyValuePatProp),
Assign(AssignPatProp),
Rest(RestPat),
}
Variants
KeyValue(KeyValuePatProp)
Assign(AssignPatProp)
Rest(RestPat)
Implementations
sourceimpl ObjectPatProp
impl ObjectPatProp
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<&KeyValuePatProp>
pub fn as_key_value(&self) -> Option<&KeyValuePatProp>
Returns Some
if self
is a reference of variant KeyValue
, and None
otherwise.
sourcepub fn as_mut_key_value(&mut self) -> Option<&mut KeyValuePatProp>
pub fn as_mut_key_value(&mut self) -> Option<&mut KeyValuePatProp>
Returns Some
if self
is a mutable reference of variant KeyValue
, and None
otherwise.
sourcepub fn expect_key_value(self) -> KeyValuePatPropwhere
Self: Debug,
pub fn expect_key_value(self) -> KeyValuePatPropwhere
Self: Debug,
sourcepub fn key_value(self) -> Option<KeyValuePatProp>
pub fn key_value(self) -> Option<KeyValuePatProp>
Returns Some
if self
is of variant KeyValue
, and None
otherwise.
sourcepub fn as_assign(&self) -> Option<&AssignPatProp>
pub fn as_assign(&self) -> Option<&AssignPatProp>
Returns Some
if self
is a reference of variant Assign
, and None
otherwise.
sourcepub fn as_mut_assign(&mut self) -> Option<&mut AssignPatProp>
pub fn as_mut_assign(&mut self) -> Option<&mut AssignPatProp>
Returns Some
if self
is a mutable reference of variant Assign
, and None
otherwise.
sourcepub fn expect_assign(self) -> AssignPatPropwhere
Self: Debug,
pub fn expect_assign(self) -> AssignPatPropwhere
Self: Debug,
sourcepub fn assign(self) -> Option<AssignPatProp>
pub fn assign(self) -> Option<AssignPatProp>
Returns Some
if self
is of variant Assign
, and None
otherwise.
sourcepub fn as_rest(&self) -> Option<&RestPat>
pub fn as_rest(&self) -> Option<&RestPat>
Returns Some
if self
is a reference of variant Rest
, and None
otherwise.
sourcepub fn as_mut_rest(&mut self) -> Option<&mut RestPat>
pub fn as_mut_rest(&mut self) -> Option<&mut RestPat>
Returns Some
if self
is a mutable reference of variant Rest
, and None
otherwise.
sourcepub fn expect_rest(self) -> RestPatwhere
Self: Debug,
pub fn expect_rest(self) -> RestPatwhere
Self: Debug,
Trait Implementations
sourceimpl Clone for ObjectPatProp
impl Clone for ObjectPatProp
sourcefn clone(&self) -> ObjectPatProp
fn clone(&self) -> ObjectPatProp
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ObjectPatProp
impl Debug for ObjectPatProp
sourceimpl<'de> Deserialize<'de> for ObjectPatProp
impl<'de> Deserialize<'de> for ObjectPatProp
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>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl EqIgnoreSpan for ObjectPatProp
impl EqIgnoreSpan for ObjectPatProp
fn eq_ignore_span(&self, other: &Self) -> bool
sourceimpl From<AssignPatProp> for ObjectPatProp
impl From<AssignPatProp> for ObjectPatProp
sourcefn from(v: AssignPatProp) -> Self
fn from(v: AssignPatProp) -> Self
Converts to this type from the input type.
sourceimpl From<KeyValuePatProp> for ObjectPatProp
impl From<KeyValuePatProp> for ObjectPatProp
sourcefn from(v: KeyValuePatProp) -> Self
fn from(v: KeyValuePatProp) -> Self
Converts to this type from the input type.
sourceimpl From<RestPat> for ObjectPatProp
impl From<RestPat> for ObjectPatProp
sourceimpl Hash for ObjectPatProp
impl Hash for ObjectPatProp
sourceimpl PartialEq<ObjectPatProp> for ObjectPatProp
impl PartialEq<ObjectPatProp> for ObjectPatProp
sourcefn eq(&self, other: &ObjectPatProp) -> bool
fn eq(&self, other: &ObjectPatProp) -> bool
sourceimpl Serialize for ObjectPatProp
impl Serialize for ObjectPatProp
sourceimpl Spanned for ObjectPatProp
impl Spanned for ObjectPatProp
impl Eq for ObjectPatProp
impl StructuralEq for ObjectPatProp
impl StructuralPartialEq for ObjectPatProp
Auto Trait Implementations
impl RefUnwindSafe for ObjectPatProp
impl Send for ObjectPatProp
impl Sync for ObjectPatProp
impl Unpin for ObjectPatProp
impl UnwindSafe for ObjectPatProp
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more