Type Alias ConstData

Source
pub type ConstData = ConstData<Interner>;

Aliased Type§

struct ConstData {
    pub ty: Ty<Interner>,
    pub value: ConstValue<Interner>,
}

Fields§

§ty: Ty<Interner>

Type that holds the constant.

§value: ConstValue<Interner>

The value of the constant.

Implementations

§

impl<I> ConstData<I>
where I: Interner,

pub fn intern(self, interner: I) -> Const<I>

Wraps the constant data in a Const.

Trait Implementations

§

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

§

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

Cast a value to type T.
§

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

§

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

§

type Interner = I

The interner associated with the type.
§

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

§

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

§

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