pub enum TyKind {
Ident(Ident),
Primitive(PrimitiveSet),
Singleton(Literal),
Union(Vec<(Option<String>, Ty)>),
Tuple(Vec<TyTupleField>),
Array(Box<Ty>),
Function(Option<TyFunc>),
Any,
Difference {
base: Box<Ty>,
exclude: Box<Ty>,
},
GenericArg((usize, String)),
}
Variants§
Ident(Ident)
Identifier that still needs to be resolved.
Primitive(PrimitiveSet)
Type of a built-in primitive type
Singleton(Literal)
Type that contains only a one value
Union(Vec<(Option<String>, Ty)>)
Union of sets (sum)
Tuple(Vec<TyTupleField>)
Type of tuples (product)
Array(Box<Ty>)
Type of arrays
Function(Option<TyFunc>)
Type of functions with defined params and return types.
Any
Type of every possible value. Super type of all other types. The breaker of chains. Mother of types.
Difference
Type that is the largest subtype of base
while not a subtype of exclude
.
GenericArg((usize, String))
A generic argument. Contains id of the function call node and generic type param name.
Implementations§
source§impl TyKind
impl TyKind
sourcepub fn as_ident_mut(&mut self) -> Option<&mut Ident>
pub fn as_ident_mut(&mut self) -> Option<&mut Ident>
Optionally returns mutable references to the inner fields if this is a TyKind::Ident
, otherwise None
sourcepub fn as_ident(&self) -> Option<&Ident>
pub fn as_ident(&self) -> Option<&Ident>
Optionally returns references to the inner fields if this is a TyKind::Ident
, otherwise None
sourcepub fn into_ident(self) -> Result<Ident, Self>
pub fn into_ident(self) -> Result<Ident, Self>
Returns the inner fields if this is a TyKind::Ident
, otherwise returns back the enum in the Err
case of the result
sourcepub fn is_primitive(&self) -> bool
pub fn is_primitive(&self) -> bool
Returns true if this is a TyKind::Primitive
, otherwise false
sourcepub fn as_primitive_mut(&mut self) -> Option<&mut PrimitiveSet>
pub fn as_primitive_mut(&mut self) -> Option<&mut PrimitiveSet>
Optionally returns mutable references to the inner fields if this is a TyKind::Primitive
, otherwise None
sourcepub fn as_primitive(&self) -> Option<&PrimitiveSet>
pub fn as_primitive(&self) -> Option<&PrimitiveSet>
Optionally returns references to the inner fields if this is a TyKind::Primitive
, otherwise None
sourcepub fn into_primitive(self) -> Result<PrimitiveSet, Self>
pub fn into_primitive(self) -> Result<PrimitiveSet, Self>
Returns the inner fields if this is a TyKind::Primitive
, otherwise returns back the enum in the Err
case of the result
sourcepub fn is_singleton(&self) -> bool
pub fn is_singleton(&self) -> bool
Returns true if this is a TyKind::Singleton
, otherwise false
sourcepub fn as_singleton_mut(&mut self) -> Option<&mut Literal>
pub fn as_singleton_mut(&mut self) -> Option<&mut Literal>
Optionally returns mutable references to the inner fields if this is a TyKind::Singleton
, otherwise None
sourcepub fn as_singleton(&self) -> Option<&Literal>
pub fn as_singleton(&self) -> Option<&Literal>
Optionally returns references to the inner fields if this is a TyKind::Singleton
, otherwise None
sourcepub fn into_singleton(self) -> Result<Literal, Self>
pub fn into_singleton(self) -> Result<Literal, Self>
Returns the inner fields if this is a TyKind::Singleton
, otherwise returns back the enum in the Err
case of the result
sourcepub fn as_union_mut(&mut self) -> Option<&mut Vec<(Option<String>, Ty)>>
pub fn as_union_mut(&mut self) -> Option<&mut Vec<(Option<String>, Ty)>>
Optionally returns mutable references to the inner fields if this is a TyKind::Union
, otherwise None
sourcepub fn as_union(&self) -> Option<&Vec<(Option<String>, Ty)>>
pub fn as_union(&self) -> Option<&Vec<(Option<String>, Ty)>>
Optionally returns references to the inner fields if this is a TyKind::Union
, otherwise None
sourcepub fn into_union(self) -> Result<Vec<(Option<String>, Ty)>, Self>
pub fn into_union(self) -> Result<Vec<(Option<String>, Ty)>, Self>
Returns the inner fields if this is a TyKind::Union
, otherwise returns back the enum in the Err
case of the result
sourcepub fn as_tuple_mut(&mut self) -> Option<&mut Vec<TyTupleField>>
pub fn as_tuple_mut(&mut self) -> Option<&mut Vec<TyTupleField>>
Optionally returns mutable references to the inner fields if this is a TyKind::Tuple
, otherwise None
sourcepub fn as_tuple(&self) -> Option<&Vec<TyTupleField>>
pub fn as_tuple(&self) -> Option<&Vec<TyTupleField>>
Optionally returns references to the inner fields if this is a TyKind::Tuple
, otherwise None
sourcepub fn into_tuple(self) -> Result<Vec<TyTupleField>, Self>
pub fn into_tuple(self) -> Result<Vec<TyTupleField>, Self>
Returns the inner fields if this is a TyKind::Tuple
, otherwise returns back the enum in the Err
case of the result
sourcepub fn as_array_mut(&mut self) -> Option<&mut Box<Ty>>
pub fn as_array_mut(&mut self) -> Option<&mut Box<Ty>>
Optionally returns mutable references to the inner fields if this is a TyKind::Array
, otherwise None
sourcepub fn as_array(&self) -> Option<&Box<Ty>>
pub fn as_array(&self) -> Option<&Box<Ty>>
Optionally returns references to the inner fields if this is a TyKind::Array
, otherwise None
sourcepub fn into_array(self) -> Result<Box<Ty>, Self>
pub fn into_array(self) -> Result<Box<Ty>, Self>
Returns the inner fields if this is a TyKind::Array
, otherwise returns back the enum in the Err
case of the result
sourcepub fn is_function(&self) -> bool
pub fn is_function(&self) -> bool
Returns true if this is a TyKind::Function
, otherwise false
sourcepub fn as_function_mut(&mut self) -> Option<&mut Option<TyFunc>>
pub fn as_function_mut(&mut self) -> Option<&mut Option<TyFunc>>
Optionally returns mutable references to the inner fields if this is a TyKind::Function
, otherwise None
sourcepub fn as_function(&self) -> Option<&Option<TyFunc>>
pub fn as_function(&self) -> Option<&Option<TyFunc>>
Optionally returns references to the inner fields if this is a TyKind::Function
, otherwise None
sourcepub fn into_function(self) -> Result<Option<TyFunc>, Self>
pub fn into_function(self) -> Result<Option<TyFunc>, Self>
Returns the inner fields if this is a TyKind::Function
, otherwise returns back the enum in the Err
case of the result
sourcepub fn is_difference(&self) -> bool
pub fn is_difference(&self) -> bool
Returns true if this is a TyKind::Difference
, otherwise false
sourcepub fn as_difference_mut(&mut self) -> Option<(&mut Box<Ty>, &mut Box<Ty>)>
pub fn as_difference_mut(&mut self) -> Option<(&mut Box<Ty>, &mut Box<Ty>)>
Optionally returns mutable references to the inner fields if this is a TyKind::Difference
, otherwise None
sourcepub fn as_difference(&self) -> Option<(&Box<Ty>, &Box<Ty>)>
pub fn as_difference(&self) -> Option<(&Box<Ty>, &Box<Ty>)>
Optionally returns references to the inner fields if this is a TyKind::Difference
, otherwise None
sourcepub fn into_difference(self) -> Result<(Box<Ty>, Box<Ty>), Self>
pub fn into_difference(self) -> Result<(Box<Ty>, Box<Ty>), Self>
Returns the inner fields if this is a TyKind::Difference
, otherwise returns back the enum in the Err
case of the result
sourcepub fn is_generic_arg(&self) -> bool
pub fn is_generic_arg(&self) -> bool
Returns true if this is a TyKind::GenericArg
, otherwise false
sourcepub fn as_generic_arg_mut(&mut self) -> Option<&mut (usize, String)>
pub fn as_generic_arg_mut(&mut self) -> Option<&mut (usize, String)>
Optionally returns mutable references to the inner fields if this is a TyKind::GenericArg
, otherwise None
sourcepub fn as_generic_arg(&self) -> Option<&(usize, String)>
pub fn as_generic_arg(&self) -> Option<&(usize, String)>
Optionally returns references to the inner fields if this is a TyKind::GenericArg
, otherwise None
sourcepub fn into_generic_arg(self) -> Result<(usize, String), Self>
pub fn into_generic_arg(self) -> Result<(usize, String), Self>
Returns the inner fields if this is a TyKind::GenericArg
, otherwise returns back the enum in the Err
case of the result
Trait Implementations§
source§impl<'de> Deserialize<'de> for TyKind
impl<'de> Deserialize<'de> for TyKind
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 From<PrimitiveSet> for TyKind
impl From<PrimitiveSet> for TyKind
source§fn from(value: PrimitiveSet) -> Self
fn from(value: PrimitiveSet) -> Self
source§impl JsonSchema for TyKind
impl JsonSchema for TyKind
source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
source§fn always_inline_schema() -> bool
fn always_inline_schema() -> bool
$ref
keyword. Read moreimpl StructuralPartialEq for TyKind
Auto Trait Implementations§
impl Freeze for TyKind
impl RefUnwindSafe for TyKind
impl Send for TyKind
impl Sync for TyKind
impl Unpin for TyKind
impl UnwindSafe for TyKind
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
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<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