Type Alias TyData

Source
pub type TyData = TyData<Interner>;

Aliased Type§

struct TyData {
    pub kind: TyKind<Interner>,
    pub flags: TypeFlags,
}

Fields§

§kind: TyKind<Interner>

The kind

§flags: TypeFlags

Type flags

Trait Implementations

§

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

§

fn clone(&self) -> TyData<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 TyData<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 TyData<I>
where I: Interner,

§

type Interner = I

The interner associated with the type.
§

impl<I> Hash for TyData<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 TyData<I>
where I: PartialEq + Interner,

§

fn eq(&self, other: &TyData<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> Eq for TyData<I>
where I: Eq + Interner,

§

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