Enum swc_ecma_visit::fields::PrivatePropField
source · pub enum PrivatePropField {
Span,
Key,
Value,
TypeAnn,
IsStatic,
Decorators(usize),
Accessibility,
IsOptional,
IsOverride,
Readonly,
Definite,
}
Expand description
This enum represents fields of PrivatePropField
Variants§
Span
This represents span
Key
This represents key
Value
This represents value
TypeAnn
This represents type_ann
IsStatic
This represents is_static
Decorators(usize)
This represents decorators
Accessibility
This represents accessibility
IsOptional
This represents is_optional
IsOverride
This represents is_override
Readonly
This represents readonly
Definite
This represents definite
Implementations§
Trait Implementations§
source§impl Clone for PrivatePropField
impl Clone for PrivatePropField
source§fn clone(&self) -> PrivatePropField
fn clone(&self) -> PrivatePropField
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PrivatePropField
impl Debug for PrivatePropField
source§impl<'de> Deserialize<'de> for PrivatePropField
impl<'de> Deserialize<'de> for PrivatePropField
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>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for PrivatePropField
impl Hash for PrivatePropField
source§impl Ord for PrivatePropField
impl Ord for PrivatePropField
source§fn cmp(&self, other: &PrivatePropField) -> Ordering
fn cmp(&self, other: &PrivatePropField) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<PrivatePropField> for PrivatePropField
impl PartialEq<PrivatePropField> for PrivatePropField
source§fn eq(&self, other: &PrivatePropField) -> bool
fn eq(&self, other: &PrivatePropField) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<PrivatePropField> for PrivatePropField
impl PartialOrd<PrivatePropField> for PrivatePropField
source§fn partial_cmp(&self, other: &PrivatePropField) -> Option<Ordering>
fn partial_cmp(&self, other: &PrivatePropField) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more