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, TyKind>
pub fn into_ident(self) -> Result<Ident, TyKind>
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, TyKind>
pub fn into_primitive(self) -> Result<PrimitiveSet, TyKind>
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, TyKind>
pub fn into_singleton(self) -> Result<Literal, TyKind>
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)>, TyKind>
pub fn into_union(self) -> Result<Vec<(Option<String>, Ty)>, TyKind>
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>, TyKind>
pub fn into_tuple(self) -> Result<Vec<TyTupleField>, TyKind>
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>, TyKind>
pub fn into_array(self) -> Result<Box<Ty>, TyKind>
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>, TyKind>
pub fn into_function(self) -> Result<Option<TyFunc>, TyKind>
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>), TyKind>
pub fn into_difference(self) -> Result<(Box<Ty>, Box<Ty>), TyKind>
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
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TyKind
impl<'de> Deserialize<'de> for TyKind
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TyKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TyKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Source§impl From<PrimitiveSet> for TyKind
impl From<PrimitiveSet> for TyKind
Source§fn from(value: PrimitiveSet) -> TyKind
fn from(value: PrimitiveSet) -> TyKind
Source§impl Serialize for TyKind
impl Serialize for TyKind
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
impl 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 moreSource§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
Source§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the foreground set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red()
and
green()
, which have the same functionality but are
pithier.
§Example
Set foreground color to white using fg()
:
use yansi::{Paint, Color};
painted.fg(Color::White);
Set foreground color to white using white()
.
use yansi::Paint;
painted.white();
Source§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
Source§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
Source§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
Source§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
Source§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
Source§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
Source§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
Source§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
Source§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the background set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red()
and
on_green()
, which have the same functionality but
are pithier.
§Example
Set background color to red using fg()
:
use yansi::{Paint, Color};
painted.bg(Color::Red);
Set background color to red using on_red()
.
use yansi::Paint;
painted.on_red();
Source§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
Source§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
Source§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
Source§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
Source§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
Source§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
Source§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
Source§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
Source§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
Source§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
Source§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling Attribute
value
.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold()
and
underline()
, which have the same functionality
but are pithier.
§Example
Make text bold using attr()
:
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);
Make text bold using using bold()
.
use yansi::Paint;
painted.bold();
Source§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
Source§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi
Quirk
value
.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask()
and
wrap()
, which have the same functionality but are
pithier.
§Example
Enable wrapping using .quirk()
:
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);
Enable wrapping using wrap()
.
use yansi::Paint;
painted.wrap();
Source§fn clear(&self) -> Painted<&T>
👎Deprecated since 1.0.1: renamed to resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.
fn clear(&self) -> Painted<&T>
resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.Source§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the Condition
value
applies. Replaces any previous condition.
See the crate level docs for more details.
§Example
Enable styling painted
only when both stdout
and stderr
are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);