Struct ra_ap_hir_ty::Interner[][src]

pub struct Interner;

Trait Implementations

impl Clone for Interner[src]

impl Copy for Interner[src]

impl Debug for Interner[src]

impl Eq for Interner[src]

impl HasInterner for Interner[src]

type Interner = Self

The interner associated with the type.

impl Hash for Interner[src]

impl Interner for Interner[src]

type InternedType = Arc<TyData<Self>>

“Interned” representation of types. In normal user code, Self::InternedType is not referenced. Instead, we refer to Ty<Self>, which wraps this type. Read more

type InternedLifetime = LifetimeData<Self>

“Interned” representation of lifetimes. In normal user code, Self::InternedLifetime is not referenced. Instead, we refer to Lifetime<Self>, which wraps this type. Read more

type InternedConst = Arc<ConstData<Self>>

“Interned” representation of const expressions. In normal user code, Self::InternedConst is not referenced. Instead, we refer to Const<Self>, which wraps this type. Read more

type InternedConcreteConst = ()

“Interned” representation of an evaluated const value. Self::InternedConcreteConst is not referenced. Instead, we refer to ConcreteConst<Self>, which wraps this type. Read more

type InternedGenericArg = GenericArgData<Self>

“Interned” representation of a “generic parameter”, which can be either a type or a lifetime. In normal user code, Self::InternedGenericArg is not referenced. Instead, we refer to GenericArg<Self>, which wraps this type. Read more

type InternedGoal = Arc<GoalData<Self>>

“Interned” representation of a “goal”. In normal user code, Self::InternedGoal is not referenced. Instead, we refer to Goal<Self>, which wraps this type. Read more

type InternedGoals = Vec<Goal<Self>>

“Interned” representation of a list of goals. In normal user code, Self::InternedGoals is not referenced. Instead, we refer to Goals<Self>, which wraps this type. Read more

type InternedSubstitution = SmallVec<[GenericArg<Self>; 2]>

“Interned” representation of a “substitution”. In normal user code, Self::InternedSubstitution is not referenced. Instead, we refer to Substitution<Self>, which wraps this type. Read more

type InternedProgramClause = Arc<ProgramClauseData<Self>>

“Interned” representation of a “program clause”. In normal user code, Self::InternedProgramClause is not referenced. Instead, we refer to ProgramClause<Self>, which wraps this type. Read more

type InternedProgramClauses = Arc<[ProgramClause<Self>]>

“Interned” representation of a list of program clauses. In normal user code, Self::InternedProgramClauses is not referenced. Instead, we refer to ProgramClauses<Self>, which wraps this type. Read more

type InternedQuantifiedWhereClauses = Vec<QuantifiedWhereClause<Self>>

“Interned” representation of a list of quantified where clauses. In normal user code, Self::InternedQuantifiedWhereClauses is not referenced. Instead, we refer to QuantifiedWhereClauses<Self>, which wraps this type. Read more

type InternedVariableKinds = Vec<VariableKind<Self>>

“Interned” representation of a list of variable kinds. In normal user code, Self::InternedVariableKinds is not referenced. Instead, we refer to VariableKinds<Self>, which wraps this type. Read more

type InternedCanonicalVarKinds = Vec<CanonicalVarKind<Self>>

“Interned” representation of a list of variable kinds with universe index. In normal user code, Self::InternedCanonicalVarKinds is not referenced. Instead, we refer to CanonicalVarKinds<Self>, which wraps this type. Read more

type InternedConstraints = Vec<InEnvironment<Constraint<Self>>>

“Interned” representation of a list of region constraints. In normal user code, Self::InternedConstraints is not referenced. Instead, we refer to Constraints<Self>, which wraps this type. Read more

type InternedVariances = Arc<[Variance]>

“Interned” representation of a list of chalk_ir::Variance. In normal user code, Self::InternedVariances is not referenced. Instead, we refer to Variances<Self>, which wraps this type. Read more

type DefId = InternId

The core “id” type used for trait-ids and the like.

type InternedAdtId = AdtId

The ID type for ADTs

type Identifier = TypeAliasId

Representation of identifiers.

type FnAbi = ()

Representation of function ABI (e.g. calling convention).

impl Ord for Interner[src]

impl PartialEq<Interner> for Interner[src]

impl PartialOrd<Interner> for Interner[src]

impl StructuralEq for Interner[src]

impl StructuralPartialEq for Interner[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Cast for T[src]

impl<T> CloneAny for T where
    T: Any + Clone

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<N> NodeTrait for N where
    N: Copy + Ord + Hash
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.