pub type InferenceVar = InferenceVar;
Aliased Type§
struct InferenceVar { /* private fields */ }
Implementations
§impl InferenceVar
impl InferenceVar
pub fn to_ty<I>(self, interner: I, kind: TyVariableKind) -> Ty<I>where
I: Interner,
pub fn to_ty<I>(self, interner: I, kind: TyVariableKind) -> Ty<I>where
I: Interner,
Wraps the inference variable in a type.
pub fn to_lifetime<I>(self, interner: I) -> Lifetime<I>where
I: Interner,
pub fn to_lifetime<I>(self, interner: I) -> Lifetime<I>where
I: Interner,
Wraps the inference variable in a lifetime.
pub fn to_const<I>(self, interner: I, ty: Ty<I>) -> Const<I>where
I: Interner,
pub fn to_const<I>(self, interner: I, ty: Ty<I>) -> Const<I>where
I: Interner,
Wraps the inference variable in a constant.