pub enum MemberProp {
Ident(Ident),
PrivateName(PrivateName),
Computed(ComputedPropName),
}
Variants§
Implementations§
source§impl MemberProp
impl MemberProp
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 const fn is_private_name(&self) -> bool
pub const fn is_private_name(&self) -> bool
Returns true
if self
is of variant PrivateName
.
sourcepub fn as_private_name(&self) -> Option<&PrivateName>
pub fn as_private_name(&self) -> Option<&PrivateName>
Returns Some
if self
is a reference of variant PrivateName
, and None
otherwise.
sourcepub fn as_mut_private_name(&mut self) -> Option<&mut PrivateName>
pub fn as_mut_private_name(&mut self) -> Option<&mut PrivateName>
Returns Some
if self
is a mutable reference of variant PrivateName
, and None
otherwise.
sourcepub fn expect_private_name(self) -> PrivateNamewhere
Self: Debug,
pub fn expect_private_name(self) -> PrivateNamewhere
Self: Debug,
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>
pub fn private_name(self) -> Option<PrivateName>
Returns Some
if self
is of variant PrivateName
, and None
otherwise.
sourcepub const fn is_computed(&self) -> bool
pub const 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.
Trait Implementations§
source§impl Clone for MemberProp
impl Clone for MemberProp
source§fn clone(&self) -> MemberProp
fn clone(&self) -> MemberProp
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for MemberProp
impl Debug for MemberProp
source§impl<'de> Deserialize<'de> for MemberProp
impl<'de> Deserialize<'de> for MemberProp
source§fn 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>,
source§impl EqIgnoreSpan for MemberProp
impl EqIgnoreSpan for MemberProp
fn eq_ignore_span(&self, other: &Self) -> bool
source§impl From<ComputedPropName> for MemberProp
impl From<ComputedPropName> for MemberProp
source§fn from(v: ComputedPropName) -> Self
fn from(v: ComputedPropName) -> Self
source§impl From<Ident> for MemberProp
impl From<Ident> for MemberProp
source§impl From<PrivateName> for MemberProp
impl From<PrivateName> for MemberProp
source§fn from(v: PrivateName) -> Self
fn from(v: PrivateName) -> Self
source§impl From<PropName> for MemberProp
impl From<PropName> for MemberProp
source§impl Hash for MemberProp
impl Hash for MemberProp
source§impl PartialEq for MemberProp
impl PartialEq for MemberProp
source§impl Serialize for MemberProp
impl Serialize for MemberProp
source§impl Spanned for MemberProp
impl Spanned for MemberProp
source§impl Take for MemberProp
impl Take for MemberProp
impl Eq for MemberProp
impl StructuralPartialEq for MemberProp
Auto Trait Implementations§
impl Freeze for MemberProp
impl RefUnwindSafe for MemberProp
impl Send for MemberProp
impl Sync for MemberProp
impl Unpin for MemberProp
impl UnwindSafe for MemberProp
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
§impl<T> CallHasher for T
impl<T> CallHasher for T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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 more