pub struct Binder<I, T>where
I: Interner,{
value: T,
bound_vars: <I as Interner>::BoundVarKinds,
}
Expand description
Binder
is a binder for higher-ranked lifetimes or types. It is part of the
compiler’s representation for things like for<'a> Fn(&'a isize)
(which would be represented by the type PolyTraitRef == Binder<I, TraitRef>
).
See https://rustc-dev-guide.rust-lang.org/ty_module/instantiating_binders.html for more details.
Decodable
and Encodable
are implemented for Binder<T>
using the impl_binder_encode_decode!
macro.
Fields§
§value: T
§bound_vars: <I as Interner>::BoundVarKinds
Implementations§
Source§impl<I, T> Binder<I, T>where
I: Interner,
T: TypeVisitable<I>,
impl<I, T> Binder<I, T>where
I: Interner,
T: TypeVisitable<I>,
Sourcepub fn dummy(value: T) -> Binder<I, T>
pub fn dummy(value: T) -> Binder<I, T>
Wraps value
in a binder, asserting that value
does not
contain any bound vars that would be bound by the
binder. This is commonly used to ‘inject’ a value T into a
different binding level.
pub fn bind_with_vars( value: T, bound_vars: <I as Interner>::BoundVarKinds, ) -> Binder<I, T>
Source§impl<I, T> Binder<I, T>where
I: Interner,
impl<I, T> Binder<I, T>where
I: Interner,
Sourcepub fn skip_binder(self) -> T
pub fn skip_binder(self) -> T
Returns the value contained inside of this for<'a>
. Accessing generic args
in the returned value is generally incorrect.
Please read https://rustc-dev-guide.rust-lang.org/ty_module/instantiating_binders.html
before using this function. It is usually better to discharge the binder using
no_bound_vars
or instantiate_bound_regions
or something like that.
skip_binder
is only valid when you are either extracting data that does not reference
any generic arguments, e.g. a DefId
, or when you’re making sure you only pass the
value to things which can handle escaping bound vars.
See existing uses of .skip_binder()
in rustc_trait_selection::traits::select
or rustc_next_trait_solver
for examples.
pub fn bound_vars(&self) -> <I as Interner>::BoundVarKinds
pub fn as_ref(&self) -> Binder<I, &T>
pub fn as_deref(&self) -> Binder<I, &<T as Deref>::Target>where
T: Deref,
pub fn map_bound_ref<F, U>(&self, f: F) -> Binder<I, U>
pub fn map_bound<F, U>(self, f: F) -> Binder<I, U>where
U: TypeVisitable<I>,
F: FnOnce(T) -> U,
pub fn try_map_bound<F, U, E>(self, f: F) -> Result<Binder<I, U>, E>
Sourcepub fn rebind<U>(&self, value: U) -> Binder<I, U>where
U: TypeVisitable<I>,
pub fn rebind<U>(&self, value: U) -> Binder<I, U>where
U: TypeVisitable<I>,
Wraps a value
in a binder, using the same bound variables as the
current Binder
. This should not be used if the new value changes
the bound variables. Note: the (old or new) value itself does not
necessarily need to name all the bound variables.
This currently doesn’t do anything different than bind
, because we
don’t actually track bound vars. However, semantically, it is different
because bound vars aren’t allowed to change here, whereas they are
in bind
. This may be (debug) asserted in the future.
Sourcepub fn no_bound_vars(self) -> Option<T>where
T: TypeVisitable<I>,
pub fn no_bound_vars(self) -> Option<T>where
T: TypeVisitable<I>,
Unwraps and returns the value within, but only if it contains
no bound vars at all. (In other words, if this binder –
and indeed any enclosing binder – doesn’t bind anything at
all.) Otherwise, returns None
.
(One could imagine having a method that just unwraps a single binder, but permits late-bound vars bound by enclosing binders, but that would require adjusting the debruijn indices, and given the shallow binding structure we often use, would not be that useful.)
Source§impl<I, T> Binder<I, T>where
I: Interner,
T: IntoIterator,
impl<I, T> Binder<I, T>where
I: Interner,
T: IntoIterator,
Source§impl<I> Binder<I, TraitPredicate<I>>where
I: Interner,
impl<I> Binder<I, TraitPredicate<I>>where
I: Interner,
Source§impl<I> Binder<I, ExistentialPredicate<I>>where
I: Interner,
impl<I> Binder<I, ExistentialPredicate<I>>where
I: Interner,
Sourcepub fn with_self_ty(
&self,
cx: I,
self_ty: <I as Interner>::Ty,
) -> <I as Interner>::Clause
pub fn with_self_ty( &self, cx: I, self_ty: <I as Interner>::Ty, ) -> <I as Interner>::Clause
Given an existential predicate like ?Self: PartialEq<u32>
(e.g., derived from dyn PartialEq<u32>
),
and a concrete type self_ty
, returns a full predicate where the existentially quantified variable ?Self
has been replaced with self_ty
(e.g., self_ty: PartialEq<u32>
, in our example).
Source§impl<I> Binder<I, ExistentialTraitRef<I>>where
I: Interner,
impl<I> Binder<I, ExistentialTraitRef<I>>where
I: Interner,
pub fn def_id(&self) -> <I as Interner>::TraitId
Sourcepub fn with_self_ty(
&self,
cx: I,
self_ty: <I as Interner>::Ty,
) -> Binder<I, TraitRef<I>>
pub fn with_self_ty( &self, cx: I, self_ty: <I as Interner>::Ty, ) -> Binder<I, TraitRef<I>>
Object types don’t have a self type specified. Therefore, when
we convert the principal trait-ref into a normal trait-ref,
you must give some self type. A common choice is mk_err()
or some placeholder type.
Source§impl<I> Binder<I, ExistentialProjection<I>>where
I: Interner,
impl<I> Binder<I, ExistentialProjection<I>>where
I: Interner,
pub fn with_self_ty( &self, cx: I, self_ty: <I as Interner>::Ty, ) -> Binder<I, ProjectionPredicate<I>>
pub fn item_def_id(&self) -> <I as Interner>::DefId
Source§impl<I> Binder<I, ProjectionPredicate<I>>where
I: Interner,
impl<I> Binder<I, ProjectionPredicate<I>>where
I: Interner,
Sourcepub fn trait_def_id(&self, cx: I) -> <I as Interner>::TraitId
pub fn trait_def_id(&self, cx: I) -> <I as Interner>::TraitId
Returns the DefId
of the trait of the associated item being projected.
pub fn term(&self) -> Binder<I, <I as Interner>::Term>
Sourcepub fn item_def_id(&self) -> <I as Interner>::DefId
pub fn item_def_id(&self) -> <I as Interner>::DefId
The DefId
of the TraitItem
for the associated type.
Note that this is not the DefId
of the TraitRef
containing this
associated type, which is in tcx.associated_item(projection_def_id()).container
.
Source§impl<I> Binder<I, HostEffectPredicate<I>>where
I: Interner,
impl<I> Binder<I, HostEffectPredicate<I>>where
I: Interner,
Source§impl<I> Binder<I, FnSig<I>>where
I: Interner,
impl<I> Binder<I, FnSig<I>>where
I: Interner,
pub fn inputs(self) -> Binder<I, <I as Interner>::FnInputTys>
pub fn input(self, index: usize) -> Binder<I, <I as Interner>::Ty>
pub fn inputs_and_output(self) -> Binder<I, <I as Interner>::Tys>
pub fn output(self) -> Binder<I, <I as Interner>::Ty>
pub fn c_variadic(self) -> bool
pub fn safety(self) -> <I as Interner>::Safety
pub fn abi(self) -> <I as Interner>::Abi
pub fn is_fn_trait_compatible(&self) -> bool
pub fn split(self) -> (Binder<I, FnSigTys<I>>, FnHeader<I>)
Source§impl<I> Binder<I, FnSigTys<I>>where
I: Interner,
impl<I> Binder<I, FnSigTys<I>>where
I: Interner,
pub fn with(self, hdr: FnHeader<I>) -> Binder<I, FnSig<I>>
pub fn inputs(self) -> Binder<I, <I as Interner>::FnInputTys>
pub fn input(self, index: usize) -> Binder<I, <I as Interner>::Ty>
pub fn inputs_and_output(self) -> Binder<I, <I as Interner>::Tys>
pub fn output(self) -> Binder<I, <I as Interner>::Ty>
Trait Implementations§
Source§impl<I, D> Decodable<D> for Binder<I, ExistentialPredicate<I>>where
I: Interner,
D: Decoder,
ExistentialPredicate<I>: TypeVisitable<I> + Decodable<D>,
<I as Interner>::BoundVarKinds: Decodable<D>,
impl<I, D> Decodable<D> for Binder<I, ExistentialPredicate<I>>where
I: Interner,
D: Decoder,
ExistentialPredicate<I>: TypeVisitable<I> + Decodable<D>,
<I as Interner>::BoundVarKinds: Decodable<D>,
Source§impl<I, D> Decodable<D> for Binder<I, ExistentialTraitRef<I>>where
I: Interner,
D: Decoder,
ExistentialTraitRef<I>: TypeVisitable<I> + Decodable<D>,
<I as Interner>::BoundVarKinds: Decodable<D>,
impl<I, D> Decodable<D> for Binder<I, ExistentialTraitRef<I>>where
I: Interner,
D: Decoder,
ExistentialTraitRef<I>: TypeVisitable<I> + Decodable<D>,
<I as Interner>::BoundVarKinds: Decodable<D>,
Source§impl<I, D> Decodable<D> for Binder<I, FnSig<I>>where
I: Interner,
D: Decoder,
FnSig<I>: TypeVisitable<I> + Decodable<D>,
<I as Interner>::BoundVarKinds: Decodable<D>,
impl<I, D> Decodable<D> for Binder<I, FnSig<I>>where
I: Interner,
D: Decoder,
FnSig<I>: TypeVisitable<I> + Decodable<D>,
<I as Interner>::BoundVarKinds: Decodable<D>,
Source§impl<I, D> Decodable<D> for Binder<I, FnSigTys<I>>where
I: Interner,
D: Decoder,
FnSigTys<I>: TypeVisitable<I> + Decodable<D>,
<I as Interner>::BoundVarKinds: Decodable<D>,
impl<I, D> Decodable<D> for Binder<I, FnSigTys<I>>where
I: Interner,
D: Decoder,
FnSigTys<I>: TypeVisitable<I> + Decodable<D>,
<I as Interner>::BoundVarKinds: Decodable<D>,
Source§impl<I, D> Decodable<D> for Binder<I, HostEffectPredicate<I>>where
I: Interner,
D: Decoder,
HostEffectPredicate<I>: TypeVisitable<I> + Decodable<D>,
<I as Interner>::BoundVarKinds: Decodable<D>,
impl<I, D> Decodable<D> for Binder<I, HostEffectPredicate<I>>where
I: Interner,
D: Decoder,
HostEffectPredicate<I>: TypeVisitable<I> + Decodable<D>,
<I as Interner>::BoundVarKinds: Decodable<D>,
Source§impl<I, D> Decodable<D> for Binder<I, TraitPredicate<I>>where
I: Interner,
D: Decoder,
TraitPredicate<I>: TypeVisitable<I> + Decodable<D>,
<I as Interner>::BoundVarKinds: Decodable<D>,
impl<I, D> Decodable<D> for Binder<I, TraitPredicate<I>>where
I: Interner,
D: Decoder,
TraitPredicate<I>: TypeVisitable<I> + Decodable<D>,
<I as Interner>::BoundVarKinds: Decodable<D>,
Source§impl<I, D> Decodable<D> for Binder<I, TraitRef<I>>where
I: Interner,
D: Decoder,
TraitRef<I>: TypeVisitable<I> + Decodable<D>,
<I as Interner>::BoundVarKinds: Decodable<D>,
impl<I, D> Decodable<D> for Binder<I, TraitRef<I>>where
I: Interner,
D: Decoder,
TraitRef<I>: TypeVisitable<I> + Decodable<D>,
<I as Interner>::BoundVarKinds: Decodable<D>,
Source§impl<I, E> Encodable<E> for Binder<I, ExistentialPredicate<I>>where
I: Interner,
E: Encoder,
ExistentialPredicate<I>: Encodable<E>,
<I as Interner>::BoundVarKinds: Encodable<E>,
impl<I, E> Encodable<E> for Binder<I, ExistentialPredicate<I>>where
I: Interner,
E: Encoder,
ExistentialPredicate<I>: Encodable<E>,
<I as Interner>::BoundVarKinds: Encodable<E>,
Source§impl<I, E> Encodable<E> for Binder<I, ExistentialTraitRef<I>>where
I: Interner,
E: Encoder,
ExistentialTraitRef<I>: Encodable<E>,
<I as Interner>::BoundVarKinds: Encodable<E>,
impl<I, E> Encodable<E> for Binder<I, ExistentialTraitRef<I>>where
I: Interner,
E: Encoder,
ExistentialTraitRef<I>: Encodable<E>,
<I as Interner>::BoundVarKinds: Encodable<E>,
Source§impl<I, E> Encodable<E> for Binder<I, HostEffectPredicate<I>>where
I: Interner,
E: Encoder,
HostEffectPredicate<I>: Encodable<E>,
<I as Interner>::BoundVarKinds: Encodable<E>,
impl<I, E> Encodable<E> for Binder<I, HostEffectPredicate<I>>where
I: Interner,
E: Encoder,
HostEffectPredicate<I>: Encodable<E>,
<I as Interner>::BoundVarKinds: Encodable<E>,
Source§impl<I, E> Encodable<E> for Binder<I, TraitPredicate<I>>where
I: Interner,
E: Encoder,
TraitPredicate<I>: Encodable<E>,
<I as Interner>::BoundVarKinds: Encodable<E>,
impl<I, E> Encodable<E> for Binder<I, TraitPredicate<I>>where
I: Interner,
E: Encoder,
TraitPredicate<I>: Encodable<E>,
<I as Interner>::BoundVarKinds: Encodable<E>,
Source§impl<I, T, __CTX> HashStable<__CTX> for Binder<I, T>
impl<I, T, __CTX> HashStable<__CTX> for Binder<I, T>
fn hash_stable( &self, __hcx: &mut __CTX, __hasher: &mut StableHasher<SipHasher128>, )
Source§impl<I, T> IntoDiagArg for Binder<I, T>where
I: Interner,
T: IntoDiagArg,
impl<I, T> IntoDiagArg for Binder<I, T>where
I: Interner,
T: IntoDiagArg,
Source§fn into_diag_arg(self, path: &mut Option<PathBuf>) -> DiagArgValue
fn into_diag_arg(self, path: &mut Option<PathBuf>) -> DiagArgValue
Source§impl<'tcx> Key for Binder<TyCtxt<'tcx>, ExistentialTraitRef<TyCtxt<'tcx>>>
impl<'tcx> Key for Binder<TyCtxt<'tcx>, ExistentialTraitRef<TyCtxt<'tcx>>>
Source§type Cache<V> = DefaultCache<Binder<TyCtxt<'tcx>, ExistentialTraitRef<TyCtxt<'tcx>>>, V>
type Cache<V> = DefaultCache<Binder<TyCtxt<'tcx>, ExistentialTraitRef<TyCtxt<'tcx>>>, V>
Source§fn default_span(&self, tcx: TyCtxt<'_>) -> Span
fn default_span(&self, tcx: TyCtxt<'_>) -> Span
self
, what span should we use?Source§fn key_as_def_id(&self) -> Option<DefId>
fn key_as_def_id(&self) -> Option<DefId>
Source§fn def_id_for_ty_in_cycle(&self) -> Option<DefId>
fn def_id_for_ty_in_cycle(&self) -> Option<DefId>
Source§impl<'tcx> Key for Binder<TyCtxt<'tcx>, TraitRef<TyCtxt<'tcx>>>
impl<'tcx> Key for Binder<TyCtxt<'tcx>, TraitRef<TyCtxt<'tcx>>>
Source§type Cache<V> = DefaultCache<Binder<TyCtxt<'tcx>, TraitRef<TyCtxt<'tcx>>>, V>
type Cache<V> = DefaultCache<Binder<TyCtxt<'tcx>, TraitRef<TyCtxt<'tcx>>>, V>
Source§fn default_span(&self, tcx: TyCtxt<'_>) -> Span
fn default_span(&self, tcx: TyCtxt<'_>) -> Span
self
, what span should we use?Source§fn key_as_def_id(&self) -> Option<DefId>
fn key_as_def_id(&self) -> Option<DefId>
Source§fn def_id_for_ty_in_cycle(&self) -> Option<DefId>
fn def_id_for_ty_in_cycle(&self) -> Option<DefId>
Source§impl<I, U, T> Lift<U> for Binder<I, T>where
I: Interner,
U: Interner,
T: Lift<U>,
<I as Interner>::BoundVarKinds: Lift<U, Lifted = <U as Interner>::BoundVarKinds>,
impl<I, U, T> Lift<U> for Binder<I, T>where
I: Interner,
U: Interner,
T: Lift<U>,
<I as Interner>::BoundVarKinds: Lift<U, Lifted = <U as Interner>::BoundVarKinds>,
Source§impl<'tcx> PrintPolyTraitPredicateExt<'tcx> for Binder<TyCtxt<'tcx>, TraitPredicate<TyCtxt<'tcx>>>
impl<'tcx> PrintPolyTraitPredicateExt<'tcx> for Binder<TyCtxt<'tcx>, TraitPredicate<TyCtxt<'tcx>>>
fn print_modifiers_and_trait_path( self, ) -> Binder<TyCtxt<'tcx>, TraitPredPrintModifiersAndPath<'tcx>>
fn print_with_bound_constness( self, constness: Option<BoundConstness>, ) -> Binder<TyCtxt<'tcx>, TraitPredPrintWithBoundConstness<'tcx>>
Source§impl<'tcx> PrintPolyTraitRefExt<'tcx> for Binder<TyCtxt<'tcx>, TraitRef<TyCtxt<'tcx>>>
impl<'tcx> PrintPolyTraitRefExt<'tcx> for Binder<TyCtxt<'tcx>, TraitRef<TyCtxt<'tcx>>>
fn print_only_trait_path( self, ) -> Binder<TyCtxt<'tcx>, TraitRefPrintOnlyTraitPath<'tcx>>
fn print_trait_sugared(self) -> Binder<TyCtxt<'tcx>, TraitRefPrintSugared<'tcx>>
Source§impl<'tcx> ToTrace<'tcx> for Binder<TyCtxt<'tcx>, ExistentialProjection<TyCtxt<'tcx>>>
impl<'tcx> ToTrace<'tcx> for Binder<TyCtxt<'tcx>, ExistentialProjection<TyCtxt<'tcx>>>
fn to_trace( cause: &ObligationCause<'tcx>, a: Binder<TyCtxt<'tcx>, ExistentialProjection<TyCtxt<'tcx>>>, b: Binder<TyCtxt<'tcx>, ExistentialProjection<TyCtxt<'tcx>>>, ) -> TypeTrace<'tcx>
Source§impl<'tcx> ToTrace<'tcx> for Binder<TyCtxt<'tcx>, ExistentialTraitRef<TyCtxt<'tcx>>>
impl<'tcx> ToTrace<'tcx> for Binder<TyCtxt<'tcx>, ExistentialTraitRef<TyCtxt<'tcx>>>
fn to_trace( cause: &ObligationCause<'tcx>, a: Binder<TyCtxt<'tcx>, ExistentialTraitRef<TyCtxt<'tcx>>>, b: Binder<TyCtxt<'tcx>, ExistentialTraitRef<TyCtxt<'tcx>>>, ) -> TypeTrace<'tcx>
Source§impl<I, T> TypeFoldable<I> for Binder<I, T>where
I: Interner,
T: TypeFoldable<I>,
impl<I, T> TypeFoldable<I> for Binder<I, T>where
I: Interner,
T: TypeFoldable<I>,
Source§fn try_fold_with<F>(
self,
folder: &mut F,
) -> Result<Binder<I, T>, <F as FallibleTypeFolder<I>>::Error>where
F: FallibleTypeFolder<I>,
fn try_fold_with<F>(
self,
folder: &mut F,
) -> Result<Binder<I, T>, <F as FallibleTypeFolder<I>>::Error>where
F: FallibleTypeFolder<I>,
Source§impl<I, T> TypeSuperFoldable<I> for Binder<I, T>where
I: Interner,
T: TypeFoldable<I>,
impl<I, T> TypeSuperFoldable<I> for Binder<I, T>where
I: Interner,
T: TypeFoldable<I>,
Source§fn try_super_fold_with<F>(
self,
folder: &mut F,
) -> Result<Binder<I, T>, <F as FallibleTypeFolder<I>>::Error>where
F: FallibleTypeFolder<I>,
fn try_super_fold_with<F>(
self,
folder: &mut F,
) -> Result<Binder<I, T>, <F as FallibleTypeFolder<I>>::Error>where
F: FallibleTypeFolder<I>,
TypeFolder
methods, when a non-custom traversal
is desired for the value of the type of interest passed to that method.
For example, in MyFolder::try_fold_ty(ty)
, it is valid to call
ty.try_super_fold_with(self)
, but any other folding should be done
with xyz.try_fold_with(self)
.Source§fn super_fold_with<F>(self, folder: &mut F) -> Binder<I, T>where
F: TypeFolder<I>,
fn super_fold_with<F>(self, folder: &mut F) -> Binder<I, T>where
F: TypeFolder<I>,
try_super_fold_with
for use with
infallible folders. Do not override this method, to ensure coherence
with try_super_fold_with
.Source§impl<I, T> TypeSuperVisitable<I> for Binder<I, T>where
I: Interner,
T: TypeVisitable<I>,
impl<I, T> TypeSuperVisitable<I> for Binder<I, T>where
I: Interner,
T: TypeVisitable<I>,
Source§fn super_visit_with<V>(&self, visitor: &mut V) -> <V as TypeVisitor<I>>::Resultwhere
V: TypeVisitor<I>,
fn super_visit_with<V>(&self, visitor: &mut V) -> <V as TypeVisitor<I>>::Resultwhere
V: TypeVisitor<I>,
TypeVisitor
methods, when a non-custom
traversal is desired for the value of the type of interest passed to
that method. For example, in MyVisitor::visit_ty(ty)
, it is valid to
call ty.super_visit_with(self)
, but any other visiting should be done
with xyz.visit_with(self)
.Source§impl<I, T> TypeVisitable<I> for Binder<I, T>where
I: Interner,
T: TypeVisitable<I>,
impl<I, T> TypeVisitable<I> for Binder<I, T>where
I: Interner,
T: TypeVisitable<I>,
Source§fn visit_with<V>(&self, visitor: &mut V) -> <V as TypeVisitor<I>>::Resultwhere
V: TypeVisitor<I>,
fn visit_with<V>(&self, visitor: &mut V) -> <V as TypeVisitor<I>>::Resultwhere
V: TypeVisitor<I>,
Source§impl<I> UpcastFrom<I, Binder<I, TraitRef<I>>> for Binder<I, TraitPredicate<I>>where
I: Interner,
impl<I> UpcastFrom<I, Binder<I, TraitRef<I>>> for Binder<I, TraitPredicate<I>>where
I: Interner,
fn upcast_from( from: Binder<I, TraitRef<I>>, _tcx: I, ) -> Binder<I, TraitPredicate<I>>
Source§impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, ClauseKind<TyCtxt<'tcx>>>> for Clause<'tcx>
impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, ClauseKind<TyCtxt<'tcx>>>> for Clause<'tcx>
fn upcast_from( from: Binder<TyCtxt<'tcx>, ClauseKind<TyCtxt<'tcx>>>, tcx: TyCtxt<'tcx>, ) -> Clause<'tcx>
Source§impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, ClauseKind<TyCtxt<'tcx>>>> for Predicate<'tcx>
impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, ClauseKind<TyCtxt<'tcx>>>> for Predicate<'tcx>
fn upcast_from( from: Binder<TyCtxt<'tcx>, ClauseKind<TyCtxt<'tcx>>>, tcx: TyCtxt<'tcx>, ) -> Predicate<'tcx>
Source§impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, HostEffectPredicate<TyCtxt<'tcx>>>> for Clause<'tcx>
impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, HostEffectPredicate<TyCtxt<'tcx>>>> for Clause<'tcx>
fn upcast_from( from: Binder<TyCtxt<'tcx>, HostEffectPredicate<TyCtxt<'tcx>>>, tcx: TyCtxt<'tcx>, ) -> Clause<'tcx>
Source§impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, HostEffectPredicate<TyCtxt<'tcx>>>> for Predicate<'tcx>
impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, HostEffectPredicate<TyCtxt<'tcx>>>> for Predicate<'tcx>
fn upcast_from( from: Binder<TyCtxt<'tcx>, HostEffectPredicate<TyCtxt<'tcx>>>, tcx: TyCtxt<'tcx>, ) -> Predicate<'tcx>
Source§impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, OutlivesPredicate<TyCtxt<'tcx>, Region<'tcx>>>> for Predicate<'tcx>
impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, OutlivesPredicate<TyCtxt<'tcx>, Region<'tcx>>>> for Predicate<'tcx>
fn upcast_from( from: Binder<TyCtxt<'tcx>, OutlivesPredicate<TyCtxt<'tcx>, Region<'tcx>>>, tcx: TyCtxt<'tcx>, ) -> Predicate<'tcx>
Source§impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, PredicateKind<TyCtxt<'tcx>>>> for Predicate<'tcx>
impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, PredicateKind<TyCtxt<'tcx>>>> for Predicate<'tcx>
fn upcast_from( from: Binder<TyCtxt<'tcx>, PredicateKind<TyCtxt<'tcx>>>, tcx: TyCtxt<'tcx>, ) -> Predicate<'tcx>
Source§impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, ProjectionPredicate<TyCtxt<'tcx>>>> for Clause<'tcx>
impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, ProjectionPredicate<TyCtxt<'tcx>>>> for Clause<'tcx>
fn upcast_from( from: Binder<TyCtxt<'tcx>, ProjectionPredicate<TyCtxt<'tcx>>>, tcx: TyCtxt<'tcx>, ) -> Clause<'tcx>
Source§impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, ProjectionPredicate<TyCtxt<'tcx>>>> for Predicate<'tcx>
impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, ProjectionPredicate<TyCtxt<'tcx>>>> for Predicate<'tcx>
fn upcast_from( from: Binder<TyCtxt<'tcx>, ProjectionPredicate<TyCtxt<'tcx>>>, tcx: TyCtxt<'tcx>, ) -> Predicate<'tcx>
Source§impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, TraitPredicate<TyCtxt<'tcx>>>> for Clause<'tcx>
impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, TraitPredicate<TyCtxt<'tcx>>>> for Clause<'tcx>
fn upcast_from( from: Binder<TyCtxt<'tcx>, TraitPredicate<TyCtxt<'tcx>>>, tcx: TyCtxt<'tcx>, ) -> Clause<'tcx>
Source§impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, TraitPredicate<TyCtxt<'tcx>>>> for Predicate<'tcx>
impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, TraitPredicate<TyCtxt<'tcx>>>> for Predicate<'tcx>
fn upcast_from( from: Binder<TyCtxt<'tcx>, TraitPredicate<TyCtxt<'tcx>>>, tcx: TyCtxt<'tcx>, ) -> Predicate<'tcx>
Source§impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, TraitRef<TyCtxt<'tcx>>>> for Clause<'tcx>
impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, TraitRef<TyCtxt<'tcx>>>> for Clause<'tcx>
Source§impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, TraitRef<TyCtxt<'tcx>>>> for Predicate<'tcx>
impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, TraitRef<TyCtxt<'tcx>>>> for Predicate<'tcx>
Source§impl<'tcx> Value<TyCtxt<'tcx>> for Binder<TyCtxt<'_>, FnSig<TyCtxt<'_>>>
impl<'tcx> Value<TyCtxt<'tcx>> for Binder<TyCtxt<'_>, FnSig<TyCtxt<'_>>>
fn from_cycle_error( tcx: TyCtxt<'tcx>, cycle_error: &CycleError, guar: ErrorGuaranteed, ) -> Binder<TyCtxt<'_>, FnSig<TyCtxt<'_>>>
impl<I, T> Copy for Binder<I, T>
impl<I, T> Eq for Binder<I, T>
Auto Trait Implementations§
impl<I, T> DynSend for Binder<I, T>
impl<I, T> DynSync for Binder<I, T>
impl<I, T> Freeze for Binder<I, T>
impl<I, T> RefUnwindSafe for Binder<I, T>
impl<I, T> Send for Binder<I, T>
impl<I, T> Sync for Binder<I, T>
impl<I, T> Unpin for Binder<I, T>
impl<I, T> UnwindSafe for Binder<I, T>
Blanket Implementations§
Source§impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
fn allocate_on(self, arena: &'tcx Arena<'tcx>) -> &'tcx mut T
fn allocate_from_iter( arena: &'tcx Arena<'tcx>, iter: impl IntoIterator<Item = T>, ) -> &'tcx mut [T]
Source§impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
fn allocate_on(self, arena: &'tcx Arena<'tcx>) -> &'tcx mut T
fn allocate_from_iter( arena: &'tcx Arena<'tcx>, iter: impl IntoIterator<Item = T>, ) -> &'tcx mut [T]
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
Source§impl<Tcx, T> DepNodeParams<Tcx> for T
impl<Tcx, T> DepNodeParams<Tcx> for T
default fn fingerprint_style() -> FingerprintStyle
Source§default fn to_fingerprint(&self, tcx: Tcx) -> Fingerprint
default fn to_fingerprint(&self, tcx: Tcx) -> Fingerprint
default fn to_debug_str(&self, tcx: Tcx) -> String
Source§default fn recover(_: Tcx, _: &DepNode) -> Option<T>
default fn recover(_: Tcx, _: &DepNode) -> 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.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<P> IntoQueryParam<P> for P
impl<P> IntoQueryParam<P> for P
fn into_query_param(self) -> P
Source§impl<'tcx, T> IsSuggestable<'tcx> for T
impl<'tcx, T> IsSuggestable<'tcx> for T
Source§impl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<I, T> TypeVisitableExt<I> for Twhere
I: Interner,
T: TypeVisitable<I>,
impl<I, T> TypeVisitableExt<I> for Twhere
I: Interner,
T: TypeVisitable<I>,
fn has_type_flags(&self, flags: TypeFlags) -> bool
Source§fn 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.fn error_reported(&self) -> Result<(), <I as Interner>::ErrorGuaranteed>
Source§fn has_vars_bound_above(&self, binder: DebruijnIndex) -> bool
fn has_vars_bound_above(&self, binder: DebruijnIndex) -> bool
true
if this type has any regions that escape binder
(and
hence are not bound by it).Source§fn has_escaping_bound_vars(&self) -> bool
fn has_escaping_bound_vars(&self) -> bool
true
if this type has regions that are not a part of the type.
For example, for<'a> fn(&'a i32)
return false
, while fn(&'a i32)
would return true
. The latter can occur when traversing through the
former. Read morefn has_aliases(&self) -> bool
fn has_opaque_types(&self) -> bool
fn has_coroutines(&self) -> bool
fn references_error(&self) -> bool
fn has_non_region_param(&self) -> bool
fn has_infer_regions(&self) -> bool
fn has_infer_types(&self) -> bool
fn has_non_region_infer(&self) -> bool
fn has_infer(&self) -> bool
fn has_placeholders(&self) -> bool
fn has_non_region_placeholders(&self) -> bool
fn has_param(&self) -> bool
Source§fn has_free_regions(&self) -> bool
fn has_free_regions(&self) -> bool
fn has_erased_regions(&self) -> bool
Source§fn has_erasable_regions(&self) -> bool
fn has_erasable_regions(&self) -> bool
Source§fn is_global(&self) -> bool
fn is_global(&self) -> bool
Source§fn has_bound_regions(&self) -> bool
fn has_bound_regions(&self) -> bool
Source§fn has_non_region_bound_vars(&self) -> bool
fn has_non_region_bound_vars(&self) -> bool
Source§fn has_bound_vars(&self) -> bool
fn has_bound_vars(&self) -> bool
Source§fn still_further_specializable(&self) -> bool
fn still_further_specializable(&self) -> bool
impl
specialization.Source§impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
Source§impl<I, T> UpcastFrom<I, T> for T
impl<I, T> UpcastFrom<I, T> for T
fn upcast_from(from: T, _tcx: I) -> T
Source§impl<Tcx, T> Value<Tcx> for Twhere
Tcx: DepContext,
impl<Tcx, T> Value<Tcx> for Twhere
Tcx: DepContext,
default fn from_cycle_error( tcx: Tcx, cycle_error: &CycleError, _guar: ErrorGuaranteed, ) -> T
Source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
Source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<T> ErasedDestructor for Twhere
T: 'static,
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.