pub enum TsGetterSignatureField {
Span,
Readonly,
Key,
Computed,
Optional,
TypeAnn,
}
Expand description
This enum represents fields of TsGetterSignatureField
Variants§
Span
This represents span
Readonly
This represents readonly
Key
This represents key
Computed
This represents computed
Optional
This represents optional
TypeAnn
This represents type_ann
Implementations§
Trait Implementations§
source§impl Clone for TsGetterSignatureField
impl Clone for TsGetterSignatureField
source§fn clone(&self) -> TsGetterSignatureField
fn clone(&self) -> TsGetterSignatureField
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 TsGetterSignatureField
impl Debug for TsGetterSignatureField
source§impl<'de> Deserialize<'de> for TsGetterSignatureField
impl<'de> Deserialize<'de> for TsGetterSignatureField
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 TsGetterSignatureField
impl Hash for TsGetterSignatureField
source§impl Ord for TsGetterSignatureField
impl Ord for TsGetterSignatureField
source§fn cmp(&self, other: &TsGetterSignatureField) -> Ordering
fn cmp(&self, other: &TsGetterSignatureField) -> 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<TsGetterSignatureField> for TsGetterSignatureField
impl PartialEq<TsGetterSignatureField> for TsGetterSignatureField
source§fn eq(&self, other: &TsGetterSignatureField) -> bool
fn eq(&self, other: &TsGetterSignatureField) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<TsGetterSignatureField> for TsGetterSignatureField
impl PartialOrd<TsGetterSignatureField> for TsGetterSignatureField
source§fn partial_cmp(&self, other: &TsGetterSignatureField) -> Option<Ordering>
fn partial_cmp(&self, other: &TsGetterSignatureField) -> 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