Type Alias VariableKind

Source
pub type VariableKind = VariableKind<Interner>;

Aliased Type§

enum VariableKind {
    Ty(TyVariableKind),
    Lifetime,
    Const(Ty<Interner>),
}

Variants§

§

Ty(TyVariableKind)

§

Lifetime

§

Const(Ty<Interner>)

Trait Implementations

§

impl<I> CastTo<VariableKind<I>> for VariableKind<I>
where I: Interner,

§

fn cast_to( self, _interner: <VariableKind<I> as HasInterner>::Interner, ) -> VariableKind<I>

Cast a value to type T.
§

impl<I> Clone for VariableKind<I>
where I: Clone + Interner,

§

fn clone(&self) -> VariableKind<I>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<I> Debug for VariableKind<I>
where I: Interner,

§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<I> HasInterner for VariableKind<I>
where I: Interner,

§

type Interner = I

The interner associated with the type.
§

impl<I> Hash for VariableKind<I>
where I: Hash + Interner,

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl<I> PartialEq for VariableKind<I>
where I: PartialEq + Interner,

§

fn eq(&self, other: &VariableKind<I>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<I> Zip<I> for VariableKind<I>
where I: Interner,

§

fn zip_with<Z>( zipper: &mut Z, variance: Variance, a: &VariableKind<I>, b: &VariableKind<I>, ) -> Result<(), NoSolution>
where Z: Zipper<I>,

Uses the zipper to walk through two values, ensuring that they match.
§

impl<I> Copy for VariableKind<I>
where I: Interner, <I as Interner>::InternedType: Copy,

§

impl<I> Eq for VariableKind<I>
where I: Eq + Interner,

§

impl<I> StructuralPartialEq for VariableKind<I>
where I: Interner,