Enum rustc_infer::infer::canonical::CanonicalVarKind
source · pub enum CanonicalVarKind<'tcx> {
Ty(CanonicalTyVarKind),
PlaceholderTy(Placeholder<BoundVar>),
Region(UniverseIndex),
PlaceholderRegion(Placeholder<BoundRegionKind>),
Const(UniverseIndex, Ty<'tcx>),
PlaceholderConst(Placeholder<BoundVar>, Ty<'tcx>),
}
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(Placeholder<BoundVar>)
A “placeholder” that represents “any type”.
Region(UniverseIndex)
Region variable '?R
.
PlaceholderRegion(Placeholder<BoundRegionKind>)
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, Ty<'tcx>)
Some kind of const inference variable.
PlaceholderConst(Placeholder<BoundVar>, Ty<'tcx>)
A “placeholder” that represents “any const”.
Auto Trait Implementations
impl<'tcx> !RefUnwindSafe for CanonicalVarKind<'tcx>
impl<'tcx> Send for CanonicalVarKind<'tcx>
impl<'tcx> Sync for CanonicalVarKind<'tcx>
impl<'tcx> Unpin for CanonicalVarKind<'tcx>
impl<'tcx> !UnwindSafe for CanonicalVarKind<'tcx>
Blanket Implementations
sourceimpl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
fn allocate_on(self, arena: &'a Arena<'tcx>) -> &'a mut T
fn allocate_from_iter(
arena: &'a Arena<'tcx>,
iter: impl IntoIterator<Item = T>
) -> &'a mut [T]ⓘNotable traits for &[u8]impl Read for &[u8]impl Write for &mut [u8]
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
sourceimpl<'tcx, T> IsSuggestable<'tcx> for Twhere
T: TypeVisitable<'tcx>,
impl<'tcx, T> IsSuggestable<'tcx> for Twhere
T: TypeVisitable<'tcx>,
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 24 bytes
Size for each variant:
Ty
: 4 bytesPlaceholderTy
: 8 bytesRegion
: 4 bytesPlaceholderRegion
: 16 bytesConst
: 12 bytesPlaceholderConst
: 20 bytes