Enum swc_ecma_ast::TsType
source · [−]pub enum TsType {
Show 20 variants
TsKeywordType(TsKeywordType),
TsThisType(TsThisType),
TsFnOrConstructorType(TsFnOrConstructorType),
TsTypeRef(TsTypeRef),
TsTypeQuery(TsTypeQuery),
TsTypeLit(TsTypeLit),
TsArrayType(TsArrayType),
TsTupleType(TsTupleType),
TsOptionalType(TsOptionalType),
TsRestType(TsRestType),
TsUnionOrIntersectionType(TsUnionOrIntersectionType),
TsConditionalType(TsConditionalType),
TsInferType(TsInferType),
TsParenthesizedType(TsParenthesizedType),
TsTypeOperator(TsTypeOperator),
TsIndexedAccessType(TsIndexedAccessType),
TsMappedType(TsMappedType),
TsLitType(TsLitType),
TsTypePredicate(TsTypePredicate),
TsImportType(TsImportType),
}
Variants
TsKeywordType(TsKeywordType)
TsThisType(TsThisType)
TsFnOrConstructorType(TsFnOrConstructorType)
TsTypeRef(TsTypeRef)
TsTypeQuery(TsTypeQuery)
TsTypeLit(TsTypeLit)
TsArrayType(TsArrayType)
TsTupleType(TsTupleType)
TsOptionalType(TsOptionalType)
TsRestType(TsRestType)
TsUnionOrIntersectionType(TsUnionOrIntersectionType)
TsConditionalType(TsConditionalType)
TsInferType(TsInferType)
TsParenthesizedType(TsParenthesizedType)
TsTypeOperator(TsTypeOperator)
TsIndexedAccessType(TsIndexedAccessType)
TsMappedType(TsMappedType)
TsLitType(TsLitType)
TsTypePredicate(TsTypePredicate)
TsImportType(TsImportType)
Implementations
sourceimpl TsType
impl TsType
sourcepub fn is_ts_keyword_type(&self) -> bool
pub fn is_ts_keyword_type(&self) -> bool
Returns true
if self
is of variant TsKeywordType
.
sourcepub fn as_ts_keyword_type(&self) -> Option<&TsKeywordType>
pub fn as_ts_keyword_type(&self) -> Option<&TsKeywordType>
Returns Some
if self
is a reference of variant TsKeywordType
, and None
otherwise.
sourcepub fn expect_ts_keyword_type(self) -> TsKeywordType where
Self: Debug,
pub fn expect_ts_keyword_type(self) -> TsKeywordType where
Self: Debug,
Unwraps the value, yielding the content of TsKeywordType
.
Panics
Panics if the value is not TsKeywordType
, with a panic message including the content of self
.
sourcepub fn ts_keyword_type(self) -> Option<TsKeywordType>
pub fn ts_keyword_type(self) -> Option<TsKeywordType>
Returns Some
if self
is of variant TsKeywordType
, and None
otherwise.
sourcepub fn is_ts_this_type(&self) -> bool
pub fn is_ts_this_type(&self) -> bool
Returns true
if self
is of variant TsThisType
.
sourcepub fn as_ts_this_type(&self) -> Option<&TsThisType>
pub fn as_ts_this_type(&self) -> Option<&TsThisType>
Returns Some
if self
is a reference of variant TsThisType
, and None
otherwise.
sourcepub fn expect_ts_this_type(self) -> TsThisType where
Self: Debug,
pub fn expect_ts_this_type(self) -> TsThisType where
Self: Debug,
Unwraps the value, yielding the content of TsThisType
.
Panics
Panics if the value is not TsThisType
, with a panic message including the content of self
.
sourcepub fn ts_this_type(self) -> Option<TsThisType>
pub fn ts_this_type(self) -> Option<TsThisType>
Returns Some
if self
is of variant TsThisType
, and None
otherwise.
sourcepub fn is_ts_fn_or_constructor_type(&self) -> bool
pub fn is_ts_fn_or_constructor_type(&self) -> bool
Returns true
if self
is of variant TsFnOrConstructorType
.
sourcepub fn as_ts_fn_or_constructor_type(&self) -> Option<&TsFnOrConstructorType>
pub fn as_ts_fn_or_constructor_type(&self) -> Option<&TsFnOrConstructorType>
Returns Some
if self
is a reference of variant TsFnOrConstructorType
, and None
otherwise.
sourcepub fn expect_ts_fn_or_constructor_type(self) -> TsFnOrConstructorType where
Self: Debug,
pub fn expect_ts_fn_or_constructor_type(self) -> TsFnOrConstructorType where
Self: Debug,
Unwraps the value, yielding the content of TsFnOrConstructorType
.
Panics
Panics if the value is not TsFnOrConstructorType
, with a panic message including the content of self
.
sourcepub fn ts_fn_or_constructor_type(self) -> Option<TsFnOrConstructorType>
pub fn ts_fn_or_constructor_type(self) -> Option<TsFnOrConstructorType>
Returns Some
if self
is of variant TsFnOrConstructorType
, and None
otherwise.
sourcepub fn is_ts_type_ref(&self) -> bool
pub fn is_ts_type_ref(&self) -> bool
Returns true
if self
is of variant TsTypeRef
.
sourcepub fn as_ts_type_ref(&self) -> Option<&TsTypeRef>
pub fn as_ts_type_ref(&self) -> Option<&TsTypeRef>
Returns Some
if self
is a reference of variant TsTypeRef
, and None
otherwise.
sourcepub fn expect_ts_type_ref(self) -> TsTypeRef where
Self: Debug,
pub fn expect_ts_type_ref(self) -> TsTypeRef where
Self: Debug,
sourcepub fn ts_type_ref(self) -> Option<TsTypeRef>
pub fn ts_type_ref(self) -> Option<TsTypeRef>
Returns Some
if self
is of variant TsTypeRef
, and None
otherwise.
sourcepub fn is_ts_type_query(&self) -> bool
pub fn is_ts_type_query(&self) -> bool
Returns true
if self
is of variant TsTypeQuery
.
sourcepub fn as_ts_type_query(&self) -> Option<&TsTypeQuery>
pub fn as_ts_type_query(&self) -> Option<&TsTypeQuery>
Returns Some
if self
is a reference of variant TsTypeQuery
, and None
otherwise.
sourcepub fn expect_ts_type_query(self) -> TsTypeQuery where
Self: Debug,
pub fn expect_ts_type_query(self) -> TsTypeQuery where
Self: Debug,
Unwraps the value, yielding the content of TsTypeQuery
.
Panics
Panics if the value is not TsTypeQuery
, with a panic message including the content of self
.
sourcepub fn ts_type_query(self) -> Option<TsTypeQuery>
pub fn ts_type_query(self) -> Option<TsTypeQuery>
Returns Some
if self
is of variant TsTypeQuery
, and None
otherwise.
sourcepub fn is_ts_type_lit(&self) -> bool
pub fn is_ts_type_lit(&self) -> bool
Returns true
if self
is of variant TsTypeLit
.
sourcepub fn as_ts_type_lit(&self) -> Option<&TsTypeLit>
pub fn as_ts_type_lit(&self) -> Option<&TsTypeLit>
Returns Some
if self
is a reference of variant TsTypeLit
, and None
otherwise.
sourcepub fn expect_ts_type_lit(self) -> TsTypeLit where
Self: Debug,
pub fn expect_ts_type_lit(self) -> TsTypeLit where
Self: Debug,
sourcepub fn ts_type_lit(self) -> Option<TsTypeLit>
pub fn ts_type_lit(self) -> Option<TsTypeLit>
Returns Some
if self
is of variant TsTypeLit
, and None
otherwise.
sourcepub fn is_ts_array_type(&self) -> bool
pub fn is_ts_array_type(&self) -> bool
Returns true
if self
is of variant TsArrayType
.
sourcepub fn as_ts_array_type(&self) -> Option<&TsArrayType>
pub fn as_ts_array_type(&self) -> Option<&TsArrayType>
Returns Some
if self
is a reference of variant TsArrayType
, and None
otherwise.
sourcepub fn expect_ts_array_type(self) -> TsArrayType where
Self: Debug,
pub fn expect_ts_array_type(self) -> TsArrayType where
Self: Debug,
Unwraps the value, yielding the content of TsArrayType
.
Panics
Panics if the value is not TsArrayType
, with a panic message including the content of self
.
sourcepub fn ts_array_type(self) -> Option<TsArrayType>
pub fn ts_array_type(self) -> Option<TsArrayType>
Returns Some
if self
is of variant TsArrayType
, and None
otherwise.
sourcepub fn is_ts_tuple_type(&self) -> bool
pub fn is_ts_tuple_type(&self) -> bool
Returns true
if self
is of variant TsTupleType
.
sourcepub fn as_ts_tuple_type(&self) -> Option<&TsTupleType>
pub fn as_ts_tuple_type(&self) -> Option<&TsTupleType>
Returns Some
if self
is a reference of variant TsTupleType
, and None
otherwise.
sourcepub fn expect_ts_tuple_type(self) -> TsTupleType where
Self: Debug,
pub fn expect_ts_tuple_type(self) -> TsTupleType where
Self: Debug,
Unwraps the value, yielding the content of TsTupleType
.
Panics
Panics if the value is not TsTupleType
, with a panic message including the content of self
.
sourcepub fn ts_tuple_type(self) -> Option<TsTupleType>
pub fn ts_tuple_type(self) -> Option<TsTupleType>
Returns Some
if self
is of variant TsTupleType
, and None
otherwise.
sourcepub fn is_ts_optional_type(&self) -> bool
pub fn is_ts_optional_type(&self) -> bool
Returns true
if self
is of variant TsOptionalType
.
sourcepub fn as_ts_optional_type(&self) -> Option<&TsOptionalType>
pub fn as_ts_optional_type(&self) -> Option<&TsOptionalType>
Returns Some
if self
is a reference of variant TsOptionalType
, and None
otherwise.
sourcepub fn expect_ts_optional_type(self) -> TsOptionalType where
Self: Debug,
pub fn expect_ts_optional_type(self) -> TsOptionalType where
Self: Debug,
Unwraps the value, yielding the content of TsOptionalType
.
Panics
Panics if the value is not TsOptionalType
, with a panic message including the content of self
.
sourcepub fn ts_optional_type(self) -> Option<TsOptionalType>
pub fn ts_optional_type(self) -> Option<TsOptionalType>
Returns Some
if self
is of variant TsOptionalType
, and None
otherwise.
sourcepub fn is_ts_rest_type(&self) -> bool
pub fn is_ts_rest_type(&self) -> bool
Returns true
if self
is of variant TsRestType
.
sourcepub fn as_ts_rest_type(&self) -> Option<&TsRestType>
pub fn as_ts_rest_type(&self) -> Option<&TsRestType>
Returns Some
if self
is a reference of variant TsRestType
, and None
otherwise.
sourcepub fn expect_ts_rest_type(self) -> TsRestType where
Self: Debug,
pub fn expect_ts_rest_type(self) -> TsRestType where
Self: Debug,
Unwraps the value, yielding the content of TsRestType
.
Panics
Panics if the value is not TsRestType
, with a panic message including the content of self
.
sourcepub fn ts_rest_type(self) -> Option<TsRestType>
pub fn ts_rest_type(self) -> Option<TsRestType>
Returns Some
if self
is of variant TsRestType
, and None
otherwise.
sourcepub fn is_ts_union_or_intersection_type(&self) -> bool
pub fn is_ts_union_or_intersection_type(&self) -> bool
Returns true
if self
is of variant TsUnionOrIntersectionType
.
sourcepub fn as_ts_union_or_intersection_type(
&self
) -> Option<&TsUnionOrIntersectionType>
pub fn as_ts_union_or_intersection_type(
&self
) -> Option<&TsUnionOrIntersectionType>
Returns Some
if self
is a reference of variant TsUnionOrIntersectionType
, and None
otherwise.
sourcepub fn expect_ts_union_or_intersection_type(self) -> TsUnionOrIntersectionType where
Self: Debug,
pub fn expect_ts_union_or_intersection_type(self) -> TsUnionOrIntersectionType where
Self: Debug,
Unwraps the value, yielding the content of TsUnionOrIntersectionType
.
Panics
Panics if the value is not TsUnionOrIntersectionType
, with a panic message including the content of self
.
sourcepub fn ts_union_or_intersection_type(self) -> Option<TsUnionOrIntersectionType>
pub fn ts_union_or_intersection_type(self) -> Option<TsUnionOrIntersectionType>
Returns Some
if self
is of variant TsUnionOrIntersectionType
, and None
otherwise.
sourcepub fn is_ts_conditional_type(&self) -> bool
pub fn is_ts_conditional_type(&self) -> bool
Returns true
if self
is of variant TsConditionalType
.
sourcepub fn as_ts_conditional_type(&self) -> Option<&TsConditionalType>
pub fn as_ts_conditional_type(&self) -> Option<&TsConditionalType>
Returns Some
if self
is a reference of variant TsConditionalType
, and None
otherwise.
sourcepub fn expect_ts_conditional_type(self) -> TsConditionalType where
Self: Debug,
pub fn expect_ts_conditional_type(self) -> TsConditionalType where
Self: Debug,
Unwraps the value, yielding the content of TsConditionalType
.
Panics
Panics if the value is not TsConditionalType
, with a panic message including the content of self
.
sourcepub fn ts_conditional_type(self) -> Option<TsConditionalType>
pub fn ts_conditional_type(self) -> Option<TsConditionalType>
Returns Some
if self
is of variant TsConditionalType
, and None
otherwise.
sourcepub fn is_ts_infer_type(&self) -> bool
pub fn is_ts_infer_type(&self) -> bool
Returns true
if self
is of variant TsInferType
.
sourcepub fn as_ts_infer_type(&self) -> Option<&TsInferType>
pub fn as_ts_infer_type(&self) -> Option<&TsInferType>
Returns Some
if self
is a reference of variant TsInferType
, and None
otherwise.
sourcepub fn expect_ts_infer_type(self) -> TsInferType where
Self: Debug,
pub fn expect_ts_infer_type(self) -> TsInferType where
Self: Debug,
Unwraps the value, yielding the content of TsInferType
.
Panics
Panics if the value is not TsInferType
, with a panic message including the content of self
.
sourcepub fn ts_infer_type(self) -> Option<TsInferType>
pub fn ts_infer_type(self) -> Option<TsInferType>
Returns Some
if self
is of variant TsInferType
, and None
otherwise.
sourcepub fn is_ts_parenthesized_type(&self) -> bool
pub fn is_ts_parenthesized_type(&self) -> bool
Returns true
if self
is of variant TsParenthesizedType
.
sourcepub fn as_ts_parenthesized_type(&self) -> Option<&TsParenthesizedType>
pub fn as_ts_parenthesized_type(&self) -> Option<&TsParenthesizedType>
Returns Some
if self
is a reference of variant TsParenthesizedType
, and None
otherwise.
sourcepub fn expect_ts_parenthesized_type(self) -> TsParenthesizedType where
Self: Debug,
pub fn expect_ts_parenthesized_type(self) -> TsParenthesizedType where
Self: Debug,
Unwraps the value, yielding the content of TsParenthesizedType
.
Panics
Panics if the value is not TsParenthesizedType
, with a panic message including the content of self
.
sourcepub fn ts_parenthesized_type(self) -> Option<TsParenthesizedType>
pub fn ts_parenthesized_type(self) -> Option<TsParenthesizedType>
Returns Some
if self
is of variant TsParenthesizedType
, and None
otherwise.
sourcepub fn is_ts_type_operator(&self) -> bool
pub fn is_ts_type_operator(&self) -> bool
Returns true
if self
is of variant TsTypeOperator
.
sourcepub fn as_ts_type_operator(&self) -> Option<&TsTypeOperator>
pub fn as_ts_type_operator(&self) -> Option<&TsTypeOperator>
Returns Some
if self
is a reference of variant TsTypeOperator
, and None
otherwise.
sourcepub fn expect_ts_type_operator(self) -> TsTypeOperator where
Self: Debug,
pub fn expect_ts_type_operator(self) -> TsTypeOperator where
Self: Debug,
Unwraps the value, yielding the content of TsTypeOperator
.
Panics
Panics if the value is not TsTypeOperator
, with a panic message including the content of self
.
sourcepub fn ts_type_operator(self) -> Option<TsTypeOperator>
pub fn ts_type_operator(self) -> Option<TsTypeOperator>
Returns Some
if self
is of variant TsTypeOperator
, and None
otherwise.
sourcepub fn is_ts_indexed_access_type(&self) -> bool
pub fn is_ts_indexed_access_type(&self) -> bool
Returns true
if self
is of variant TsIndexedAccessType
.
sourcepub fn as_ts_indexed_access_type(&self) -> Option<&TsIndexedAccessType>
pub fn as_ts_indexed_access_type(&self) -> Option<&TsIndexedAccessType>
Returns Some
if self
is a reference of variant TsIndexedAccessType
, and None
otherwise.
sourcepub fn expect_ts_indexed_access_type(self) -> TsIndexedAccessType where
Self: Debug,
pub fn expect_ts_indexed_access_type(self) -> TsIndexedAccessType where
Self: Debug,
Unwraps the value, yielding the content of TsIndexedAccessType
.
Panics
Panics if the value is not TsIndexedAccessType
, with a panic message including the content of self
.
sourcepub fn ts_indexed_access_type(self) -> Option<TsIndexedAccessType>
pub fn ts_indexed_access_type(self) -> Option<TsIndexedAccessType>
Returns Some
if self
is of variant TsIndexedAccessType
, and None
otherwise.
sourcepub fn is_ts_mapped_type(&self) -> bool
pub fn is_ts_mapped_type(&self) -> bool
Returns true
if self
is of variant TsMappedType
.
sourcepub fn as_ts_mapped_type(&self) -> Option<&TsMappedType>
pub fn as_ts_mapped_type(&self) -> Option<&TsMappedType>
Returns Some
if self
is a reference of variant TsMappedType
, and None
otherwise.
sourcepub fn expect_ts_mapped_type(self) -> TsMappedType where
Self: Debug,
pub fn expect_ts_mapped_type(self) -> TsMappedType where
Self: Debug,
Unwraps the value, yielding the content of TsMappedType
.
Panics
Panics if the value is not TsMappedType
, with a panic message including the content of self
.
sourcepub fn ts_mapped_type(self) -> Option<TsMappedType>
pub fn ts_mapped_type(self) -> Option<TsMappedType>
Returns Some
if self
is of variant TsMappedType
, and None
otherwise.
sourcepub fn is_ts_lit_type(&self) -> bool
pub fn is_ts_lit_type(&self) -> bool
Returns true
if self
is of variant TsLitType
.
sourcepub fn as_ts_lit_type(&self) -> Option<&TsLitType>
pub fn as_ts_lit_type(&self) -> Option<&TsLitType>
Returns Some
if self
is a reference of variant TsLitType
, and None
otherwise.
sourcepub fn expect_ts_lit_type(self) -> TsLitType where
Self: Debug,
pub fn expect_ts_lit_type(self) -> TsLitType where
Self: Debug,
sourcepub fn ts_lit_type(self) -> Option<TsLitType>
pub fn ts_lit_type(self) -> Option<TsLitType>
Returns Some
if self
is of variant TsLitType
, and None
otherwise.
sourcepub fn is_ts_type_predicate(&self) -> bool
pub fn is_ts_type_predicate(&self) -> bool
Returns true
if self
is of variant TsTypePredicate
.
sourcepub fn as_ts_type_predicate(&self) -> Option<&TsTypePredicate>
pub fn as_ts_type_predicate(&self) -> Option<&TsTypePredicate>
Returns Some
if self
is a reference of variant TsTypePredicate
, and None
otherwise.
sourcepub fn expect_ts_type_predicate(self) -> TsTypePredicate where
Self: Debug,
pub fn expect_ts_type_predicate(self) -> TsTypePredicate where
Self: Debug,
Unwraps the value, yielding the content of TsTypePredicate
.
Panics
Panics if the value is not TsTypePredicate
, with a panic message including the content of self
.
sourcepub fn ts_type_predicate(self) -> Option<TsTypePredicate>
pub fn ts_type_predicate(self) -> Option<TsTypePredicate>
Returns Some
if self
is of variant TsTypePredicate
, and None
otherwise.
sourcepub fn is_ts_import_type(&self) -> bool
pub fn is_ts_import_type(&self) -> bool
Returns true
if self
is of variant TsImportType
.
sourcepub fn as_ts_import_type(&self) -> Option<&TsImportType>
pub fn as_ts_import_type(&self) -> Option<&TsImportType>
Returns Some
if self
is a reference of variant TsImportType
, and None
otherwise.
sourcepub fn expect_ts_import_type(self) -> TsImportType where
Self: Debug,
pub fn expect_ts_import_type(self) -> TsImportType where
Self: Debug,
Unwraps the value, yielding the content of TsImportType
.
Panics
Panics if the value is not TsImportType
, with a panic message including the content of self
.
sourcepub fn ts_import_type(self) -> Option<TsImportType>
pub fn ts_import_type(self) -> Option<TsImportType>
Returns Some
if self
is of variant TsImportType
, and None
otherwise.
Trait Implementations
sourceimpl<'arbitrary> Arbitrary<'arbitrary> for TsType
impl<'arbitrary> Arbitrary<'arbitrary> for TsType
sourcefn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of Self
from the given unstructured data. Read more
sourcefn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of Self
from the entirety of the given unstructured data. Read more
sourceimpl Archive for TsType
impl Archive for TsType
sourceimpl<'de> Deserialize<'de> for TsType
impl<'de> Deserialize<'de> for TsType
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 TsType
impl EqIgnoreSpan for TsType
fn eq_ignore_span(&self, other: &Self) -> bool
sourceimpl From<TsArrayType> for TsType
impl From<TsArrayType> for TsType
sourcefn from(v: TsArrayType) -> Self
fn from(v: TsArrayType) -> Self
Performs the conversion.
sourceimpl From<TsConditionalType> for TsType
impl From<TsConditionalType> for TsType
sourcefn from(v: TsConditionalType) -> Self
fn from(v: TsConditionalType) -> Self
Performs the conversion.
sourceimpl From<TsConstructorType> for TsType
impl From<TsConstructorType> for TsType
sourcefn from(t: TsConstructorType) -> Self
fn from(t: TsConstructorType) -> Self
Performs the conversion.
sourceimpl From<TsFnOrConstructorType> for TsType
impl From<TsFnOrConstructorType> for TsType
sourcefn from(v: TsFnOrConstructorType) -> Self
fn from(v: TsFnOrConstructorType) -> Self
Performs the conversion.
sourceimpl From<TsImportType> for TsType
impl From<TsImportType> for TsType
sourcefn from(v: TsImportType) -> Self
fn from(v: TsImportType) -> Self
Performs the conversion.
sourceimpl From<TsIndexedAccessType> for TsType
impl From<TsIndexedAccessType> for TsType
sourcefn from(v: TsIndexedAccessType) -> Self
fn from(v: TsIndexedAccessType) -> Self
Performs the conversion.
sourceimpl From<TsInferType> for TsType
impl From<TsInferType> for TsType
sourcefn from(v: TsInferType) -> Self
fn from(v: TsInferType) -> Self
Performs the conversion.
sourceimpl From<TsIntersectionType> for TsType
impl From<TsIntersectionType> for TsType
sourcefn from(t: TsIntersectionType) -> Self
fn from(t: TsIntersectionType) -> Self
Performs the conversion.
sourceimpl From<TsKeywordType> for TsType
impl From<TsKeywordType> for TsType
sourcefn from(v: TsKeywordType) -> Self
fn from(v: TsKeywordType) -> Self
Performs the conversion.
sourceimpl From<TsMappedType> for TsType
impl From<TsMappedType> for TsType
sourcefn from(v: TsMappedType) -> Self
fn from(v: TsMappedType) -> Self
Performs the conversion.
sourceimpl From<TsOptionalType> for TsType
impl From<TsOptionalType> for TsType
sourcefn from(v: TsOptionalType) -> Self
fn from(v: TsOptionalType) -> Self
Performs the conversion.
sourceimpl From<TsParenthesizedType> for TsType
impl From<TsParenthesizedType> for TsType
sourcefn from(v: TsParenthesizedType) -> Self
fn from(v: TsParenthesizedType) -> Self
Performs the conversion.
sourceimpl From<TsRestType> for TsType
impl From<TsRestType> for TsType
sourcefn from(v: TsRestType) -> Self
fn from(v: TsRestType) -> Self
Performs the conversion.
sourceimpl From<TsThisType> for TsType
impl From<TsThisType> for TsType
sourcefn from(v: TsThisType) -> Self
fn from(v: TsThisType) -> Self
Performs the conversion.
sourceimpl From<TsTupleType> for TsType
impl From<TsTupleType> for TsType
sourcefn from(v: TsTupleType) -> Self
fn from(v: TsTupleType) -> Self
Performs the conversion.
sourceimpl From<TsTypeOperator> for TsType
impl From<TsTypeOperator> for TsType
sourcefn from(v: TsTypeOperator) -> Self
fn from(v: TsTypeOperator) -> Self
Performs the conversion.
sourceimpl From<TsTypePredicate> for TsType
impl From<TsTypePredicate> for TsType
sourcefn from(v: TsTypePredicate) -> Self
fn from(v: TsTypePredicate) -> Self
Performs the conversion.
sourceimpl From<TsTypeQuery> for TsType
impl From<TsTypeQuery> for TsType
sourcefn from(v: TsTypeQuery) -> Self
fn from(v: TsTypeQuery) -> Self
Performs the conversion.
sourceimpl From<TsUnionOrIntersectionType> for TsType
impl From<TsUnionOrIntersectionType> for TsType
sourcefn from(v: TsUnionOrIntersectionType) -> Self
fn from(v: TsUnionOrIntersectionType) -> Self
Performs the conversion.
sourceimpl From<TsUnionType> for TsType
impl From<TsUnionType> for TsType
sourcefn from(t: TsUnionType) -> Self
fn from(t: TsUnionType) -> Self
Performs the conversion.
sourceimpl<__S: Fallible + ?Sized> Serialize<__S> for TsType where
__S: Serializer + ScratchSpace,
impl<__S: Fallible + ?Sized> Serialize<__S> for TsType where
__S: Serializer + ScratchSpace,
impl Eq for TsType
impl StructuralEq for TsType
impl StructuralPartialEq for TsType
Auto Trait Implementations
impl RefUnwindSafe for TsType
impl Send for TsType
impl Sync for TsType
impl Unpin for TsType
impl UnwindSafe for TsType
Blanket Implementations
sourceimpl<T> ArchivePointee for T
impl<T> ArchivePointee for T
type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
sourcefn pointer_metadata(
&<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
fn pointer_metadata(
&<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
sourceimpl<T> ArchiveUnsized for T where
T: Archive,
impl<T> ArchiveUnsized for T where
T: Archive,
type Archived = <T as Archive>::Archived
type Archived = <T as Archive>::Archived
The archived counterpart of this type. Unlike Archive
, it may be unsized. Read more
type MetadataResolver = ()
type MetadataResolver = ()
The resolver for the metadata of this type. Read more
sourceunsafe fn resolve_metadata(
&self,
usize,
<T as ArchiveUnsized>::MetadataResolver,
*mut <<T as ArchiveUnsized>::Archived as ArchivePointee>::ArchivedMetadata
)
unsafe fn resolve_metadata(
&self,
usize,
<T as ArchiveUnsized>::MetadataResolver,
*mut <<T as ArchiveUnsized>::Archived as ArchivePointee>::ArchivedMetadata
)
Creates the archived version of the metadata for this value at the given position and writes it to the given output. Read more
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<F, W, T, D> Deserialize<With<T, W>, D> for F where
W: DeserializeWith<F, T, D>,
D: Fallible + ?Sized,
F: ?Sized,
impl<F, W, T, D> Deserialize<With<T, W>, D> for F where
W: DeserializeWith<F, T, D>,
D: Fallible + ?Sized,
F: ?Sized,
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T, S> SerializeUnsized<S> for T where
T: Serialize<S>,
S: Serializer + ?Sized,
impl<T, S> SerializeUnsized<S> for T where
T: Serialize<S>,
S: Serializer + ?Sized,
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more