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§
Source§impl TsType
impl TsType
Sourcepub const fn is_ts_keyword_type(&self) -> bool
pub const 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 as_mut_ts_keyword_type(&mut self) -> Option<&mut TsKeywordType>
pub fn as_mut_ts_keyword_type(&mut self) -> Option<&mut TsKeywordType>
Returns Some
if self
is a mutable reference of variant TsKeywordType
, and None
otherwise.
Sourcepub fn expect_ts_keyword_type(self) -> TsKeywordTypewhere
Self: Debug,
pub fn expect_ts_keyword_type(self) -> TsKeywordTypewhere
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 const fn is_ts_this_type(&self) -> bool
pub const 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 as_mut_ts_this_type(&mut self) -> Option<&mut TsThisType>
pub fn as_mut_ts_this_type(&mut self) -> Option<&mut TsThisType>
Returns Some
if self
is a mutable reference of variant TsThisType
, and None
otherwise.
Sourcepub fn expect_ts_this_type(self) -> TsThisTypewhere
Self: Debug,
pub fn expect_ts_this_type(self) -> TsThisTypewhere
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 const fn is_ts_fn_or_constructor_type(&self) -> bool
pub const 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 as_mut_ts_fn_or_constructor_type(
&mut self,
) -> Option<&mut TsFnOrConstructorType>
pub fn as_mut_ts_fn_or_constructor_type( &mut self, ) -> Option<&mut TsFnOrConstructorType>
Returns Some
if self
is a mutable reference of variant TsFnOrConstructorType
, and None
otherwise.
Sourcepub fn expect_ts_fn_or_constructor_type(self) -> TsFnOrConstructorTypewhere
Self: Debug,
pub fn expect_ts_fn_or_constructor_type(self) -> TsFnOrConstructorTypewhere
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 const fn is_ts_type_ref(&self) -> bool
pub const 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 as_mut_ts_type_ref(&mut self) -> Option<&mut TsTypeRef>
pub fn as_mut_ts_type_ref(&mut self) -> Option<&mut TsTypeRef>
Returns Some
if self
is a mutable reference of variant TsTypeRef
, and None
otherwise.
Sourcepub fn expect_ts_type_ref(self) -> TsTypeRefwhere
Self: Debug,
pub fn expect_ts_type_ref(self) -> TsTypeRefwhere
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 const fn is_ts_type_query(&self) -> bool
pub const 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 as_mut_ts_type_query(&mut self) -> Option<&mut TsTypeQuery>
pub fn as_mut_ts_type_query(&mut self) -> Option<&mut TsTypeQuery>
Returns Some
if self
is a mutable reference of variant TsTypeQuery
, and None
otherwise.
Sourcepub fn expect_ts_type_query(self) -> TsTypeQuerywhere
Self: Debug,
pub fn expect_ts_type_query(self) -> TsTypeQuerywhere
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 const fn is_ts_type_lit(&self) -> bool
pub const 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 as_mut_ts_type_lit(&mut self) -> Option<&mut TsTypeLit>
pub fn as_mut_ts_type_lit(&mut self) -> Option<&mut TsTypeLit>
Returns Some
if self
is a mutable reference of variant TsTypeLit
, and None
otherwise.
Sourcepub fn expect_ts_type_lit(self) -> TsTypeLitwhere
Self: Debug,
pub fn expect_ts_type_lit(self) -> TsTypeLitwhere
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 const fn is_ts_array_type(&self) -> bool
pub const 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 as_mut_ts_array_type(&mut self) -> Option<&mut TsArrayType>
pub fn as_mut_ts_array_type(&mut self) -> Option<&mut TsArrayType>
Returns Some
if self
is a mutable reference of variant TsArrayType
, and None
otherwise.
Sourcepub fn expect_ts_array_type(self) -> TsArrayTypewhere
Self: Debug,
pub fn expect_ts_array_type(self) -> TsArrayTypewhere
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 const fn is_ts_tuple_type(&self) -> bool
pub const 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 as_mut_ts_tuple_type(&mut self) -> Option<&mut TsTupleType>
pub fn as_mut_ts_tuple_type(&mut self) -> Option<&mut TsTupleType>
Returns Some
if self
is a mutable reference of variant TsTupleType
, and None
otherwise.
Sourcepub fn expect_ts_tuple_type(self) -> TsTupleTypewhere
Self: Debug,
pub fn expect_ts_tuple_type(self) -> TsTupleTypewhere
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 const fn is_ts_optional_type(&self) -> bool
pub const 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 as_mut_ts_optional_type(&mut self) -> Option<&mut TsOptionalType>
pub fn as_mut_ts_optional_type(&mut self) -> Option<&mut TsOptionalType>
Returns Some
if self
is a mutable reference of variant TsOptionalType
, and None
otherwise.
Sourcepub fn expect_ts_optional_type(self) -> TsOptionalTypewhere
Self: Debug,
pub fn expect_ts_optional_type(self) -> TsOptionalTypewhere
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 const fn is_ts_rest_type(&self) -> bool
pub const 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 as_mut_ts_rest_type(&mut self) -> Option<&mut TsRestType>
pub fn as_mut_ts_rest_type(&mut self) -> Option<&mut TsRestType>
Returns Some
if self
is a mutable reference of variant TsRestType
, and None
otherwise.
Sourcepub fn expect_ts_rest_type(self) -> TsRestTypewhere
Self: Debug,
pub fn expect_ts_rest_type(self) -> TsRestTypewhere
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 const fn is_ts_union_or_intersection_type(&self) -> bool
pub const 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 as_mut_ts_union_or_intersection_type(
&mut self,
) -> Option<&mut TsUnionOrIntersectionType>
pub fn as_mut_ts_union_or_intersection_type( &mut self, ) -> Option<&mut TsUnionOrIntersectionType>
Returns Some
if self
is a mutable reference of variant TsUnionOrIntersectionType
, and None
otherwise.
Sourcepub fn expect_ts_union_or_intersection_type(self) -> TsUnionOrIntersectionTypewhere
Self: Debug,
pub fn expect_ts_union_or_intersection_type(self) -> TsUnionOrIntersectionTypewhere
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 const fn is_ts_conditional_type(&self) -> bool
pub const 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 as_mut_ts_conditional_type(&mut self) -> Option<&mut TsConditionalType>
pub fn as_mut_ts_conditional_type(&mut self) -> Option<&mut TsConditionalType>
Returns Some
if self
is a mutable reference of variant TsConditionalType
, and None
otherwise.
Sourcepub fn expect_ts_conditional_type(self) -> TsConditionalTypewhere
Self: Debug,
pub fn expect_ts_conditional_type(self) -> TsConditionalTypewhere
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 const fn is_ts_infer_type(&self) -> bool
pub const 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 as_mut_ts_infer_type(&mut self) -> Option<&mut TsInferType>
pub fn as_mut_ts_infer_type(&mut self) -> Option<&mut TsInferType>
Returns Some
if self
is a mutable reference of variant TsInferType
, and None
otherwise.
Sourcepub fn expect_ts_infer_type(self) -> TsInferTypewhere
Self: Debug,
pub fn expect_ts_infer_type(self) -> TsInferTypewhere
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 const fn is_ts_parenthesized_type(&self) -> bool
pub const 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 as_mut_ts_parenthesized_type(
&mut self,
) -> Option<&mut TsParenthesizedType>
pub fn as_mut_ts_parenthesized_type( &mut self, ) -> Option<&mut TsParenthesizedType>
Returns Some
if self
is a mutable reference of variant TsParenthesizedType
, and None
otherwise.
Sourcepub fn expect_ts_parenthesized_type(self) -> TsParenthesizedTypewhere
Self: Debug,
pub fn expect_ts_parenthesized_type(self) -> TsParenthesizedTypewhere
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 const fn is_ts_type_operator(&self) -> bool
pub const 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 as_mut_ts_type_operator(&mut self) -> Option<&mut TsTypeOperator>
pub fn as_mut_ts_type_operator(&mut self) -> Option<&mut TsTypeOperator>
Returns Some
if self
is a mutable reference of variant TsTypeOperator
, and None
otherwise.
Sourcepub fn expect_ts_type_operator(self) -> TsTypeOperatorwhere
Self: Debug,
pub fn expect_ts_type_operator(self) -> TsTypeOperatorwhere
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 const fn is_ts_indexed_access_type(&self) -> bool
pub const 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 as_mut_ts_indexed_access_type(
&mut self,
) -> Option<&mut TsIndexedAccessType>
pub fn as_mut_ts_indexed_access_type( &mut self, ) -> Option<&mut TsIndexedAccessType>
Returns Some
if self
is a mutable reference of variant TsIndexedAccessType
, and None
otherwise.
Sourcepub fn expect_ts_indexed_access_type(self) -> TsIndexedAccessTypewhere
Self: Debug,
pub fn expect_ts_indexed_access_type(self) -> TsIndexedAccessTypewhere
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 const fn is_ts_mapped_type(&self) -> bool
pub const 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 as_mut_ts_mapped_type(&mut self) -> Option<&mut TsMappedType>
pub fn as_mut_ts_mapped_type(&mut self) -> Option<&mut TsMappedType>
Returns Some
if self
is a mutable reference of variant TsMappedType
, and None
otherwise.
Sourcepub fn expect_ts_mapped_type(self) -> TsMappedTypewhere
Self: Debug,
pub fn expect_ts_mapped_type(self) -> TsMappedTypewhere
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 const fn is_ts_lit_type(&self) -> bool
pub const 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 as_mut_ts_lit_type(&mut self) -> Option<&mut TsLitType>
pub fn as_mut_ts_lit_type(&mut self) -> Option<&mut TsLitType>
Returns Some
if self
is a mutable reference of variant TsLitType
, and None
otherwise.
Sourcepub fn expect_ts_lit_type(self) -> TsLitTypewhere
Self: Debug,
pub fn expect_ts_lit_type(self) -> TsLitTypewhere
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 const fn is_ts_type_predicate(&self) -> bool
pub const 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 as_mut_ts_type_predicate(&mut self) -> Option<&mut TsTypePredicate>
pub fn as_mut_ts_type_predicate(&mut self) -> Option<&mut TsTypePredicate>
Returns Some
if self
is a mutable reference of variant TsTypePredicate
, and None
otherwise.
Sourcepub fn expect_ts_type_predicate(self) -> TsTypePredicatewhere
Self: Debug,
pub fn expect_ts_type_predicate(self) -> TsTypePredicatewhere
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 const fn is_ts_import_type(&self) -> bool
pub const 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 as_mut_ts_import_type(&mut self) -> Option<&mut TsImportType>
pub fn as_mut_ts_import_type(&mut self) -> Option<&mut TsImportType>
Returns Some
if self
is a mutable reference of variant TsImportType
, and None
otherwise.
Sourcepub fn expect_ts_import_type(self) -> TsImportTypewhere
Self: Debug,
pub fn expect_ts_import_type(self) -> TsImportTypewhere
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§
Source§impl<'arbitrary> Arbitrary<'arbitrary> for TsType
impl<'arbitrary> Arbitrary<'arbitrary> for TsType
Source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Self
from the given unstructured data. Read moreSource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Self
from the entirety of the given
unstructured data. Read moreSource§fn size_hint(depth: usize) -> (usize, Option<usize>)
fn size_hint(depth: usize) -> (usize, Option<usize>)
Unstructured
this type
needs to construct itself. Read moreSource§fn try_size_hint(
depth: usize,
) -> Result<(usize, Option<usize>), MaxRecursionReached>
fn try_size_hint( depth: usize, ) -> Result<(usize, Option<usize>), MaxRecursionReached>
Unstructured
this type
needs to construct itself. Read moreSource§impl Archive for TsType
impl Archive for TsType
Source§impl<'de> Deserialize<'de> for TsType
impl<'de> Deserialize<'de> for TsType
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 TsType
impl EqIgnoreSpan for TsType
fn eq_ignore_span(&self, other: &Self) -> bool
Source§impl From<TsArrayType> for TsType
impl From<TsArrayType> for TsType
Source§fn from(v: TsArrayType) -> Self
fn from(v: TsArrayType) -> Self
Source§impl From<TsConditionalType> for TsType
impl From<TsConditionalType> for TsType
Source§fn from(v: TsConditionalType) -> Self
fn from(v: TsConditionalType) -> Self
Source§impl From<TsConstructorType> for TsType
impl From<TsConstructorType> for TsType
Source§fn from(t: TsConstructorType) -> Self
fn from(t: TsConstructorType) -> Self
Source§impl From<TsFnOrConstructorType> for TsType
impl From<TsFnOrConstructorType> for TsType
Source§fn from(v: TsFnOrConstructorType) -> Self
fn from(v: TsFnOrConstructorType) -> Self
Source§impl From<TsImportType> for TsType
impl From<TsImportType> for TsType
Source§fn from(v: TsImportType) -> Self
fn from(v: TsImportType) -> Self
Source§impl From<TsIndexedAccessType> for TsType
impl From<TsIndexedAccessType> for TsType
Source§fn from(v: TsIndexedAccessType) -> Self
fn from(v: TsIndexedAccessType) -> Self
Source§impl From<TsInferType> for TsType
impl From<TsInferType> for TsType
Source§fn from(v: TsInferType) -> Self
fn from(v: TsInferType) -> Self
Source§impl From<TsIntersectionType> for TsType
impl From<TsIntersectionType> for TsType
Source§fn from(t: TsIntersectionType) -> Self
fn from(t: TsIntersectionType) -> Self
Source§impl From<TsKeywordType> for TsType
impl From<TsKeywordType> for TsType
Source§fn from(v: TsKeywordType) -> Self
fn from(v: TsKeywordType) -> Self
Source§impl From<TsMappedType> for TsType
impl From<TsMappedType> for TsType
Source§fn from(v: TsMappedType) -> Self
fn from(v: TsMappedType) -> Self
Source§impl From<TsOptionalType> for TsType
impl From<TsOptionalType> for TsType
Source§fn from(v: TsOptionalType) -> Self
fn from(v: TsOptionalType) -> Self
Source§impl From<TsParenthesizedType> for TsType
impl From<TsParenthesizedType> for TsType
Source§fn from(v: TsParenthesizedType) -> Self
fn from(v: TsParenthesizedType) -> Self
Source§impl From<TsRestType> for TsType
impl From<TsRestType> for TsType
Source§fn from(v: TsRestType) -> Self
fn from(v: TsRestType) -> Self
Source§impl From<TsThisType> for TsType
impl From<TsThisType> for TsType
Source§fn from(v: TsThisType) -> Self
fn from(v: TsThisType) -> Self
Source§impl From<TsTupleType> for TsType
impl From<TsTupleType> for TsType
Source§fn from(v: TsTupleType) -> Self
fn from(v: TsTupleType) -> Self
Source§impl From<TsTypeOperator> for TsType
impl From<TsTypeOperator> for TsType
Source§fn from(v: TsTypeOperator) -> Self
fn from(v: TsTypeOperator) -> Self
Source§impl From<TsTypePredicate> for TsType
impl From<TsTypePredicate> for TsType
Source§fn from(v: TsTypePredicate) -> Self
fn from(v: TsTypePredicate) -> Self
Source§impl From<TsTypeQuery> for TsType
impl From<TsTypeQuery> for TsType
Source§fn from(v: TsTypeQuery) -> Self
fn from(v: TsTypeQuery) -> Self
Source§impl From<TsUnionOrIntersectionType> for TsType
impl From<TsUnionOrIntersectionType> for TsType
Source§fn from(v: TsUnionOrIntersectionType) -> Self
fn from(v: TsUnionOrIntersectionType) -> Self
Source§impl From<TsUnionType> for TsType
impl From<TsUnionType> for TsType
Source§fn from(t: TsUnionType) -> Self
fn from(t: TsUnionType) -> Self
impl Eq for TsType
impl StructuralPartialEq for TsType
Auto Trait Implementations§
impl Freeze for TsType
impl RefUnwindSafe for TsType
impl Send for TsType
impl Sync for TsType
impl Unpin for TsType
impl UnwindSafe for TsType
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Source§impl<T> ArchiveUnsized for Twhere
T: Archive,
impl<T> ArchiveUnsized for Twhere
T: Archive,
Source§type Archived = <T as Archive>::Archived
type Archived = <T as Archive>::Archived
Archive
, it may be unsized. Read moreSource§type MetadataResolver = ()
type MetadataResolver = ()
Source§unsafe 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, )
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
Source§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<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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