pub enum TyKind {
Ident(Ident),
Primitive(PrimitiveSet),
Tuple(Vec<TyTupleField>),
Array(Option<Box<Ty>>),
Function(Option<TyFunc>),
}
Variants§
Ident(Ident)
Identifier that still needs to be resolved.
Primitive(PrimitiveSet)
Type of a built-in primitive type
Tuple(Vec<TyTupleField>)
Type of tuples (product)
Array(Option<Box<Ty>>)
Type of arrays
Function(Option<TyFunc>)
Type of functions with defined params and return types.
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 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 Option<Box<Ty>>>
pub fn as_array_mut(&mut self) -> Option<&mut Option<Box<Ty>>>
Optionally returns mutable references to the inner fields if this is a TyKind::Array
, otherwise None
Sourcepub fn as_array(&self) -> Option<&Option<Box<Ty>>>
pub fn as_array(&self) -> Option<&Option<Box<Ty>>>
Optionally returns references to the inner fields if this is a TyKind::Array
, otherwise None
Sourcepub fn into_array(self) -> Result<Option<Box<Ty>>, Self>
pub fn into_array(self) -> Result<Option<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
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 inline_schema() -> bool
fn 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§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