Enum swc_ecma_visit::fields::TsEnumDeclField
source · pub enum TsEnumDeclField {
Span,
Declare,
IsConst,
Id,
Members(usize),
}
Expand description
This enum represents fields of TsEnumDeclField
Variants§
Span
This represents span
Declare
This represents declare
IsConst
This represents is_const
Id
This represents id
Members(usize)
This represents members
Implementations§
Trait Implementations§
source§impl Clone for TsEnumDeclField
impl Clone for TsEnumDeclField
source§fn clone(&self) -> TsEnumDeclField
fn clone(&self) -> TsEnumDeclField
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 TsEnumDeclField
impl Debug for TsEnumDeclField
source§impl<'de> Deserialize<'de> for TsEnumDeclField
impl<'de> Deserialize<'de> for TsEnumDeclField
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 TsEnumDeclField
impl Hash for TsEnumDeclField
source§impl Ord for TsEnumDeclField
impl Ord for TsEnumDeclField
source§fn cmp(&self, other: &TsEnumDeclField) -> Ordering
fn cmp(&self, other: &TsEnumDeclField) -> 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<TsEnumDeclField> for TsEnumDeclField
impl PartialEq<TsEnumDeclField> for TsEnumDeclField
source§fn eq(&self, other: &TsEnumDeclField) -> bool
fn eq(&self, other: &TsEnumDeclField) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<TsEnumDeclField> for TsEnumDeclField
impl PartialOrd<TsEnumDeclField> for TsEnumDeclField
source§fn partial_cmp(&self, other: &TsEnumDeclField) -> Option<Ordering>
fn partial_cmp(&self, other: &TsEnumDeclField) -> 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 moresource§impl Serialize for TsEnumDeclField
impl Serialize for TsEnumDeclField
impl Copy for TsEnumDeclField
impl Eq for TsEnumDeclField
impl StructuralEq for TsEnumDeclField
impl StructuralPartialEq for TsEnumDeclField
Auto Trait Implementations§
impl RefUnwindSafe for TsEnumDeclField
impl Send for TsEnumDeclField
impl Sync for TsEnumDeclField
impl Unpin for TsEnumDeclField
impl UnwindSafe for TsEnumDeclField
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
Mutably borrows from an owned value. Read more