Enum rustc_infer::infer::TyOrConstInferVar
source · pub enum TyOrConstInferVar<'tcx> {
Ty(TyVid),
TyInt(IntVid),
TyFloat(FloatVid),
Const(ConstVid<'tcx>),
}
Expand description
Helper for ty_or_const_infer_var_changed
(see comment on that), currently
used only for traits::fulfill
’s list of stalled_on
inference variables.
Variants
Ty(TyVid)
Equivalent to ty::Infer(ty::TyVar(_))
.
TyInt(IntVid)
Equivalent to ty::Infer(ty::IntVar(_))
.
TyFloat(FloatVid)
Equivalent to ty::Infer(ty::FloatVar(_))
.
Const(ConstVid<'tcx>)
Equivalent to ty::ConstKind::Infer(ty::InferConst::Var(_))
.
Implementations
sourceimpl<'tcx> TyOrConstInferVar<'tcx>
impl<'tcx> TyOrConstInferVar<'tcx>
sourcepub fn maybe_from_generic_arg(arg: GenericArg<'tcx>) -> Option<Self>
pub fn maybe_from_generic_arg(arg: GenericArg<'tcx>) -> Option<Self>
Tries to extract an inference variable from a type or a constant, returns None
for types other than ty::Infer(_)
(or InferTy::Fresh*
) and
for constants other than ty::ConstKind::Infer(_)
(or InferConst::Fresh
).
sourcefn maybe_from_ty(ty: Ty<'tcx>) -> Option<Self>
fn maybe_from_ty(ty: Ty<'tcx>) -> Option<Self>
Tries to extract an inference variable from a type, returns None
for types other than ty::Infer(_)
(or InferTy::Fresh*
).
sourcefn maybe_from_const(ct: Const<'tcx>) -> Option<Self>
fn maybe_from_const(ct: Const<'tcx>) -> Option<Self>
Tries to extract an inference variable from a constant, returns None
for constants other than ty::ConstKind::Infer(_)
(or InferConst::Fresh
).
Trait Implementations
sourceimpl<'tcx> Clone for TyOrConstInferVar<'tcx>
impl<'tcx> Clone for TyOrConstInferVar<'tcx>
sourcefn clone(&self) -> TyOrConstInferVar<'tcx>
fn clone(&self) -> TyOrConstInferVar<'tcx>
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresourceimpl<'tcx> Debug for TyOrConstInferVar<'tcx>
impl<'tcx> Debug for TyOrConstInferVar<'tcx>
impl<'tcx> Copy for TyOrConstInferVar<'tcx>
Auto Trait Implementations
impl<'tcx> RefUnwindSafe for TyOrConstInferVar<'tcx>
impl<'tcx> Send for TyOrConstInferVar<'tcx>
impl<'tcx> Sync for TyOrConstInferVar<'tcx>
impl<'tcx> Unpin for TyOrConstInferVar<'tcx>
impl<'tcx> UnwindSafe for TyOrConstInferVar<'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
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: 8 bytes
Size for each variant:
Ty
: 4 bytesTyInt
: 4 bytesTyFloat
: 4 bytesConst
: 4 bytes