Struct rustc_middle::ty::WithOptConstParam
source · [−]Expand description
A DefId
which, in case it is a const argument, is potentially bundled with
the DefId
of the generic parameter it instantiates.
This is used to avoid calls to type_of
for const arguments during typeck
which cause cycle errors.
struct A;
impl A {
fn foo<const N: usize>(&self) -> [u8; N] { [0; N] }
// ^ const parameter
}
struct B;
impl B {
fn foo<const M: u8>(&self) -> usize { 42 }
// ^ const parameter
}
fn main() {
let a = A;
let _b = a.foo::<{ 3 + 7 }>();
// ^^^^^^^^^ const argument
}
Let’s look at the call a.foo::<{ 3 + 7 }>()
here. We do not know
which foo
is used until we know the type of a
.
We only know the type of a
once we are inside of typeck(main)
.
We also end up normalizing the type of _b
during typeck(main)
which
requires us to evaluate the const argument.
To evaluate that const argument we need to know its type,
which we would get using type_of(const_arg)
. This requires us to
resolve foo
as it can be either usize
or u8
in this example.
However, resolving foo
once again requires typeck(main)
to get the type of a
,
which results in a cycle.
In short we must not call type_of(const_arg)
during typeck(main)
.
When first creating the ty::Const
of the const argument inside of typeck
we have
already resolved foo
so we know which const parameter this argument instantiates.
This means that we also know the expected result of type_of(const_arg)
even if we
aren’t allowed to call that query: it is equal to type_of(const_param)
which is
trivial to compute.
If we now want to use that constant in a place which potentially needs its type
we also pass the type of its const_param
. This is the point of WithOptConstParam
,
except that instead of a Ty
we bundle the DefId
of the const parameter.
Meaning that we need to use type_of(const_param_did)
if const_param_did
is Some
to get the type of did
.
Fields
did: T
const_param_did: Option<DefId>
The DefId
of the corresponding generic parameter in case did
is
a const argument.
Note that even if did
is a const argument, this may still be None
.
All queries taking WithOptConstParam
start by calling tcx.opt_const_param_of(def.did)
to potentially update param_did
in the case it is None
.
Implementations
sourceimpl<T> WithOptConstParam<T>
impl<T> WithOptConstParam<T>
sourcepub fn unknown(did: T) -> WithOptConstParam<T>
pub fn unknown(did: T) -> WithOptConstParam<T>
Creates a new WithOptConstParam
setting const_param_did
to None
.
sourceimpl WithOptConstParam<LocalDefId>
impl WithOptConstParam<LocalDefId>
sourcepub fn try_lookup(
did: LocalDefId,
tcx: TyCtxt<'_>
) -> Option<(LocalDefId, DefId)>
pub fn try_lookup(
did: LocalDefId,
tcx: TyCtxt<'_>
) -> Option<(LocalDefId, DefId)>
Returns Some((did, param_did))
if def_id
is a const argument,
None
otherwise.
sourcepub fn try_upgrade(
self,
tcx: TyCtxt<'_>
) -> Option<WithOptConstParam<LocalDefId>>
pub fn try_upgrade(
self,
tcx: TyCtxt<'_>
) -> Option<WithOptConstParam<LocalDefId>>
In case self
is unknown but self.did
is a const argument, this returns
a WithOptConstParam
with the correct const_param_did
.
pub fn to_global(self) -> WithOptConstParam<DefId>
pub fn def_id_for_type_of(self) -> DefId
sourceimpl WithOptConstParam<DefId>
impl WithOptConstParam<DefId>
pub fn as_local(self) -> Option<WithOptConstParam<LocalDefId>>
pub fn as_const_arg(self) -> Option<(LocalDefId, DefId)>
pub fn is_local(self) -> bool
pub fn def_id_for_type_of(self) -> DefId
Trait Implementations
sourceimpl<T: Clone> Clone for WithOptConstParam<T>
impl<T: Clone> Clone for WithOptConstParam<T>
sourcefn clone(&self) -> WithOptConstParam<T>
fn clone(&self) -> WithOptConstParam<T>
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresourceimpl<T: Debug> Debug for WithOptConstParam<T>
impl<T: Debug> Debug for WithOptConstParam<T>
sourceimpl<'tcx, T, __D: TyDecoder<I = TyCtxt<'tcx>>> Decodable<__D> for WithOptConstParam<T>where
T: Decodable<__D>,
impl<'tcx, T, __D: TyDecoder<I = TyCtxt<'tcx>>> Decodable<__D> for WithOptConstParam<T>where
T: Decodable<__D>,
sourceimpl<'tcx, T, __E: TyEncoder<I = TyCtxt<'tcx>>> Encodable<__E> for WithOptConstParam<T>where
T: Encodable<__E>,
impl<'tcx, T, __E: TyEncoder<I = TyCtxt<'tcx>>> Encodable<__E> for WithOptConstParam<T>where
T: Encodable<__E>,
sourceimpl<T: Hash> Hash for WithOptConstParam<T>
impl<T: Hash> Hash for WithOptConstParam<T>
sourceimpl<'__ctx, T> HashStable<StableHashingContext<'__ctx>> for WithOptConstParam<T>where
T: HashStable<StableHashingContext<'__ctx>>,
impl<'__ctx, T> HashStable<StableHashingContext<'__ctx>> for WithOptConstParam<T>where
T: HashStable<StableHashingContext<'__ctx>>,
fn hash_stable(
&self,
__hcx: &mut StableHashingContext<'__ctx>,
__hasher: &mut StableHasher
)
sourceimpl<'__lifted, T> Lift<'__lifted> for WithOptConstParam<T>where
T: Lift<'__lifted>,
impl<'__lifted, T> Lift<'__lifted> for WithOptConstParam<T>where
T: Lift<'__lifted>,
type Lifted = WithOptConstParam<<T as Lift<'__lifted>>::Lifted>
fn lift_to_tcx(
self,
__tcx: TyCtxt<'__lifted>
) -> Option<WithOptConstParam<T::Lifted>>
sourceimpl<T: Ord> Ord for WithOptConstParam<T>
impl<T: Ord> Ord for WithOptConstParam<T>
sourcefn cmp(&self, other: &WithOptConstParam<T>) -> Ordering
fn cmp(&self, other: &WithOptConstParam<T>) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
sourceimpl<T: PartialEq> PartialEq<WithOptConstParam<T>> for WithOptConstParam<T>
impl<T: PartialEq> PartialEq<WithOptConstParam<T>> for WithOptConstParam<T>
sourcefn eq(&self, other: &WithOptConstParam<T>) -> bool
fn eq(&self, other: &WithOptConstParam<T>) -> bool
sourceimpl<T: PartialOrd> PartialOrd<WithOptConstParam<T>> for WithOptConstParam<T>
impl<T: PartialOrd> PartialOrd<WithOptConstParam<T>> for WithOptConstParam<T>
sourcefn partial_cmp(&self, other: &WithOptConstParam<T>) -> Option<Ordering>
fn partial_cmp(&self, other: &WithOptConstParam<T>) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresourceimpl<'tcx, T> TypeFoldable<'tcx> for WithOptConstParam<T>where
T: TypeFoldable<'tcx>,
impl<'tcx, T> TypeFoldable<'tcx> for WithOptConstParam<T>where
T: TypeFoldable<'tcx>,
sourcefn try_fold_with<__F: FallibleTypeFolder<'tcx>>(
self,
__folder: &mut __F
) -> Result<Self, __F::Error>
fn try_fold_with<__F: FallibleTypeFolder<'tcx>>(
self,
__folder: &mut __F
) -> Result<Self, __F::Error>
sourcefn fold_with<F: TypeFolder<'tcx>>(self, folder: &mut F) -> Self
fn fold_with<F: TypeFolder<'tcx>>(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
. Read moresourceimpl<'tcx, T> TypeVisitable<'tcx> for WithOptConstParam<T>where
T: TypeVisitable<'tcx>,
impl<'tcx, T> TypeVisitable<'tcx> for WithOptConstParam<T>where
T: TypeVisitable<'tcx>,
sourcefn visit_with<__V: TypeVisitor<'tcx>>(
&self,
__visitor: &mut __V
) -> ControlFlow<__V::BreakTy>
fn visit_with<__V: TypeVisitor<'tcx>>(
&self,
__visitor: &mut __V
) -> ControlFlow<__V::BreakTy>
sourcefn has_vars_bound_at_or_above(&self, binder: DebruijnIndex) -> bool
fn has_vars_bound_at_or_above(&self, binder: DebruijnIndex) -> bool
true
if self
has any late-bound regions that are either
bound by binder
or bound by some binder outside of binder
.
If binder
is ty::INNERMOST
, this indicates whether
there are any late-bound regions that appear free. Read moresourcefn has_vars_bound_above(&self, binder: DebruijnIndex) -> bool
fn has_vars_bound_above(&self, binder: DebruijnIndex) -> bool
true
if this self
has any regions that escape binder
(and
hence are not bound by it). Read morefn has_escaping_bound_vars(&self) -> bool
fn has_type_flags(&self, flags: TypeFlags) -> bool
fn has_projections(&self) -> bool
fn has_opaque_types(&self) -> bool
fn references_error(&self) -> bool
fn error_reported(&self) -> Option<ErrorGuaranteed>
fn has_param_types_or_consts(&self) -> bool
fn has_infer_regions(&self) -> bool
fn has_infer_types(&self) -> bool
fn has_infer_types_or_consts(&self) -> bool
fn needs_infer(&self) -> bool
fn has_placeholders(&self) -> bool
fn needs_subst(&self) -> bool
sourcefn has_free_regions(&self) -> bool
fn has_free_regions(&self) -> bool
fn has_erased_regions(&self) -> bool
sourcefn has_erasable_regions(&self) -> bool
fn has_erasable_regions(&self) -> bool
sourcefn is_global(&self) -> bool
fn is_global(&self) -> bool
sourcefn has_late_bound_regions(&self) -> bool
fn has_late_bound_regions(&self) -> bool
sourcefn still_further_specializable(&self) -> bool
fn still_further_specializable(&self) -> bool
impl
specialization. Read moreimpl<T: Copy> Copy for WithOptConstParam<T>
impl<T: Eq> Eq for WithOptConstParam<T>
impl<T> StructuralEq for WithOptConstParam<T>
impl<T> StructuralPartialEq for WithOptConstParam<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for WithOptConstParam<T>where
T: RefUnwindSafe,
impl<T> Send for WithOptConstParam<T>where
T: Send,
impl<T> Sync for WithOptConstParam<T>where
T: Sync,
impl<T> Unpin for WithOptConstParam<T>where
T: Unpin,
impl<T> UnwindSafe for WithOptConstParam<T>where
T: UnwindSafe,
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<Ctxt, T> DepNodeParams<Ctxt> for Twhere
Ctxt: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
impl<Ctxt, T> DepNodeParams<Ctxt> for Twhere
Ctxt: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
default fn fingerprint_style() -> FingerprintStyle
sourcedefault fn to_fingerprint(&self, tcx: Ctxt) -> Fingerprint
default fn to_fingerprint(&self, tcx: Ctxt) -> Fingerprint
default fn to_debug_str(&self, Ctxt) -> String
sourcedefault fn recover(Ctxt, &DepNode<<Ctxt as DepContext>::DepKind>) -> Option<T>
default fn recover(Ctxt, &DepNode<<Ctxt as DepContext>::DepKind>) -> Option<T>
DepNode
,
something which is needed when forcing DepNode
s during red-green
evaluation. The query system will only call this method if
fingerprint_style()
is not FingerprintStyle::Opaque
.
It is always valid to return None
here, in which case incremental
compilation will treat the query as having changed instead of forcing it. Read moresourceimpl<T, R> InternIteratorElement<T, R> for T
impl<T, R> InternIteratorElement<T, R> for T
type Output = R
fn intern_with<I, F>(iter: I, f: F) -> <T as InternIteratorElement<T, R>>::Outputwhere
I: Iterator<Item = T>,
F: FnOnce(&[T]) -> R,
sourceimpl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
sourceimpl<CTX, T> Value<CTX> for Twhere
CTX: DepContext,
impl<CTX, T> Value<CTX> for Twhere
CTX: DepContext,
default fn from_cycle_error(tcx: CTX) -> T
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
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.