Enum rustc_type_ir::CanonicalVarKind
source · pub enum CanonicalVarKind<I: Interner> {
Ty(CanonicalTyVarKind),
PlaceholderTy(I::PlaceholderTy),
Region(UniverseIndex),
PlaceholderRegion(I::PlaceholderRegion),
Const(UniverseIndex, I::Ty),
Effect,
PlaceholderConst(I::PlaceholderConst, I::Ty),
}Expand description
Describes the “kind” of the canonical variable. This is a “kind” in the type-theory sense of the term – i.e., a “meta” type system that analyzes type-like values.
Variants§
Ty(CanonicalTyVarKind)
Some kind of type inference variable.
PlaceholderTy(I::PlaceholderTy)
A “placeholder” that represents “any type”.
Region(UniverseIndex)
Region variable '?R.
PlaceholderRegion(I::PlaceholderRegion)
A “placeholder” that represents “any region”. Created when you
are solving a goal like for<'a> T: Foo<'a> to represent the
bound region 'a.
Const(UniverseIndex, I::Ty)
Some kind of const inference variable.
Effect
Effect variable '?E.
PlaceholderConst(I::PlaceholderConst, I::Ty)
A “placeholder” that represents “any const”.
Implementations§
source§impl<I: Interner> CanonicalVarKind<I>
impl<I: Interner> CanonicalVarKind<I>
pub fn universe(self) -> UniverseIndex
sourcepub fn with_updated_universe(self, ui: UniverseIndex) -> CanonicalVarKind<I>
pub fn with_updated_universe(self, ui: UniverseIndex) -> CanonicalVarKind<I>
Replaces the universe of this canonical variable with ui.
In case this is a float or int variable, this causes an ICE if the updated universe is not the root.
Trait Implementations§
source§impl<I: Interner> Clone for CanonicalVarKind<I>
impl<I: Interner> Clone for CanonicalVarKind<I>
source§impl<I: Interner> Debug for CanonicalVarKind<I>
impl<I: Interner> Debug for CanonicalVarKind<I>
source§impl<I: Interner, __D: TyDecoder<I = I>> Decodable<__D> for CanonicalVarKind<I>where
I::PlaceholderTy: Decodable<__D>,
I::PlaceholderRegion: Decodable<__D>,
I::Ty: Decodable<__D>,
I::PlaceholderConst: Decodable<__D>,
impl<I: Interner, __D: TyDecoder<I = I>> Decodable<__D> for CanonicalVarKind<I>where
I::PlaceholderTy: Decodable<__D>,
I::PlaceholderRegion: Decodable<__D>,
I::Ty: Decodable<__D>,
I::PlaceholderConst: Decodable<__D>,
source§impl<I: Interner, __E: TyEncoder<I = I>> Encodable<__E> for CanonicalVarKind<I>where
I::PlaceholderTy: Encodable<__E>,
I::PlaceholderRegion: Encodable<__E>,
I::Ty: Encodable<__E>,
I::PlaceholderConst: Encodable<__E>,
impl<I: Interner, __E: TyEncoder<I = I>> Encodable<__E> for CanonicalVarKind<I>where
I::PlaceholderTy: Encodable<__E>,
I::PlaceholderRegion: Encodable<__E>,
I::Ty: Encodable<__E>,
I::PlaceholderConst: Encodable<__E>,
source§impl<I: Interner> Hash for CanonicalVarKind<I>
impl<I: Interner> Hash for CanonicalVarKind<I>
source§impl<I: Interner, __CTX> HashStable<__CTX> for CanonicalVarKind<I>where
I::PlaceholderTy: HashStable<__CTX>,
I::PlaceholderRegion: HashStable<__CTX>,
I::Ty: HashStable<__CTX>,
I::PlaceholderConst: HashStable<__CTX>,
impl<I: Interner, __CTX> HashStable<__CTX> for CanonicalVarKind<I>where
I::PlaceholderTy: HashStable<__CTX>,
I::PlaceholderRegion: HashStable<__CTX>,
I::Ty: HashStable<__CTX>,
I::PlaceholderConst: HashStable<__CTX>,
fn hash_stable(&self, __hcx: &mut __CTX, __hasher: &mut StableHasher)
source§impl<I: Interner> PartialEq for CanonicalVarKind<I>
impl<I: Interner> PartialEq for CanonicalVarKind<I>
source§impl<I: Interner> TypeFoldable<I> for CanonicalVarKind<I>where
I::Ty: TypeFoldable<I>,
impl<I: Interner> TypeFoldable<I> for CanonicalVarKind<I>where
I::Ty: TypeFoldable<I>,
source§fn try_fold_with<F: FallibleTypeFolder<I>>(
self,
folder: &mut F
) -> Result<Self, F::Error>
fn try_fold_with<F: FallibleTypeFolder<I>>( self, folder: &mut F ) -> Result<Self, F::Error>
source§fn fold_with<F: TypeFolder<I>>(self, folder: &mut F) -> Self
fn fold_with<F: TypeFolder<I>>(self, folder: &mut F) -> Self
try_fold_with for use with infallible
folders. Do not override this method, to ensure coherence with
try_fold_with.source§impl<I: Interner> TypeVisitable<I> for CanonicalVarKind<I>where
I::Ty: TypeVisitable<I>,
impl<I: Interner> TypeVisitable<I> for CanonicalVarKind<I>where
I::Ty: TypeVisitable<I>,
source§fn visit_with<V: TypeVisitor<I>>(
&self,
visitor: &mut V
) -> ControlFlow<V::BreakTy>
fn visit_with<V: TypeVisitor<I>>( &self, visitor: &mut V ) -> ControlFlow<V::BreakTy>
impl<I: Interner> Copy for CanonicalVarKind<I>
impl<I: Interner> Eq for CanonicalVarKind<I>
Auto Trait Implementations§
impl<I> RefUnwindSafe for CanonicalVarKind<I>where
<I as Interner>::PlaceholderConst: RefUnwindSafe,
<I as Interner>::PlaceholderRegion: RefUnwindSafe,
<I as Interner>::PlaceholderTy: RefUnwindSafe,
<I as Interner>::Ty: RefUnwindSafe,
impl<I> Send for CanonicalVarKind<I>where
<I as Interner>::PlaceholderConst: Send,
<I as Interner>::PlaceholderRegion: Send,
<I as Interner>::PlaceholderTy: Send,
<I as Interner>::Ty: Send,
impl<I> Sync for CanonicalVarKind<I>where
<I as Interner>::PlaceholderConst: Sync,
<I as Interner>::PlaceholderRegion: Sync,
<I as Interner>::PlaceholderTy: Sync,
<I as Interner>::Ty: Sync,
impl<I> Unpin for CanonicalVarKind<I>where
<I as Interner>::PlaceholderConst: Unpin,
<I as Interner>::PlaceholderRegion: Unpin,
<I as Interner>::PlaceholderTy: Unpin,
<I as Interner>::Ty: Unpin,
impl<I> UnwindSafe for CanonicalVarKind<I>where
<I as Interner>::PlaceholderConst: UnwindSafe,
<I as Interner>::PlaceholderRegion: UnwindSafe,
<I as Interner>::PlaceholderTy: UnwindSafe,
<I as Interner>::Ty: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.