pub type Binder<'tcx, T> = Binder<TyCtxt<'tcx>, T>;
Aliased Type§
struct Binder<'tcx, T> { /* private fields */ }
Implementations
§impl<I> Binder<I, ExistentialPredicate<I>>where
I: Interner,
impl<I> Binder<I, ExistentialPredicate<I>>where
I: Interner,
pub 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).
§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
§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>::DefId
pub 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.
§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>)
§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>
§impl<I> Binder<I, ProjectionPredicate<I>>where
I: Interner,
impl<I> Binder<I, ProjectionPredicate<I>>where
I: Interner,
pub fn trait_def_id(&self, cx: I) -> <I as Interner>::DefId
pub fn trait_def_id(&self, cx: I) -> <I as Interner>::DefId
Returns the DefId
of the trait of the associated item being projected.
pub fn required_poly_trait_ref(&self, cx: I) -> Binder<I, TraitRef<I>>
pub fn required_poly_trait_ref(&self, cx: I) -> Binder<I, TraitRef<I>>
Get the trait ref required for this projection to be well formed. Note that for generic associated types the predicates of the associated type also need to be checked.
pub fn term(&self) -> Binder<I, <I as Interner>::Term>
pub fn projection_def_id(&self) -> <I as Interner>::DefId
pub fn projection_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
.
§impl<I, T> Binder<I, T>where
I: Interner,
impl<I, T> Binder<I, T>where
I: Interner,
pub fn skip_binder(self) -> T
pub fn skip_binder(self) -> T
Skips the binder and returns the “bound” value. This is a
risky thing to do because it’s easy to get confused about
De Bruijn indices and the like. 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 has nothing to do with bound vars, you
are doing some sort of test that does not involve bound
regions, or you are being very careful about your depth
accounting.
Some examples where skip_binder
is reasonable:
- extracting the
DefId
from a PolyTraitRef; - comparing the self type of a PolyTraitRef to see if it is equal to
a type parameter
X
, since the typeX
does not reference any regions
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>
pub 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.
pub 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.)
§impl<I, T> Binder<I, T>where
I: Interner,
T: IntoIterator,
impl<I, T> Binder<I, T>where
I: Interner,
T: IntoIterator,
pub fn iter(self) -> impl Iterator<Item = Binder<I, <T as IntoIterator>::Item>>
§impl<I, T> Binder<I, T>where
I: Interner,
T: TypeVisitable<I>,
impl<I, T> Binder<I, T>where
I: Interner,
T: TypeVisitable<I>,
pub 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>
Trait Implementations§
Source§impl<T: ParameterizedOverTcx> ParameterizedOverTcx for Binder<'static, T>
impl<T: ParameterizedOverTcx> ParameterizedOverTcx for Binder<'static, T>
Source§impl<'tcx, T, P: PrettyPrinter<'tcx>> Print<'tcx, P> for Binder<'tcx, T>
impl<'tcx, T, P: PrettyPrinter<'tcx>> Print<'tcx, P> for Binder<'tcx, T>
Source§impl<'tcx> PrintPolyTraitRefExt<'tcx> for Binder<'tcx, TraitRef<'tcx>>
impl<'tcx> PrintPolyTraitRefExt<'tcx> for Binder<'tcx, TraitRef<'tcx>>
fn print_only_trait_path(self) -> Binder<'tcx, TraitRefPrintOnlyTraitPath<'tcx>>
fn print_trait_sugared(self) -> Binder<'tcx, TraitRefPrintSugared<'tcx>>
Source§impl<'tcx> Value<TyCtxt<'tcx>> for Binder<'_, FnSig<'_>>
impl<'tcx> Value<TyCtxt<'tcx>> for Binder<'_, FnSig<'_>>
fn from_cycle_error( tcx: TyCtxt<'tcx>, cycle_error: &CycleError, guar: ErrorGuaranteed, ) -> Self
§impl<I, D> Decodable<D> for Binder<I, ExistentialPredicate<I>>where
I: Interner,
D: TyDecoder<I = I>,
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: TyDecoder<I = I>,
ExistentialPredicate<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: TyDecoder<I = I>,
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: TyDecoder<I = I>,
ExistentialTraitRef<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: TyDecoder<I = I>,
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: TyDecoder<I = I>,
FnSig<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: TyDecoder<I = I>,
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: TyDecoder<I = I>,
FnSigTys<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: TyDecoder<I = I>,
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: TyDecoder<I = I>,
TraitPredicate<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: TyDecoder<I = I>,
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: TyDecoder<I = I>,
TraitRef<I>: TypeVisitable<I> + Decodable<D>,
<I as Interner>::BoundVarKinds: Decodable<D>,
§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,
fn into_diag_arg(self) -> DiagArgValue
§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>,
§impl<I, T> Relate<I> for Binder<I, T>
impl<I, T> Relate<I> for Binder<I, T>
fn relate<R>(
relation: &mut R,
a: Binder<I, T>,
b: Binder<I, T>,
) -> Result<Binder<I, T>, TypeError<I>>where
R: TypeRelation<I>,
§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>,
§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>,
§fn fold_with<F>(self, folder: &mut F) -> Selfwhere
F: TypeFolder<I>,
fn fold_with<F>(self, folder: &mut F) -> Selfwhere
F: TypeFolder<I>,
try_fold_with
for use with infallible
folders. Do not override this method, to ensure coherence with
try_fold_with
.§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>,
§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)
.§fn super_fold_with<F>(self, folder: &mut F) -> Selfwhere
F: TypeFolder<I>,
fn super_fold_with<F>(self, folder: &mut F) -> Selfwhere
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
.§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>,
§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)
.§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>,
§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<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, TraitRef<TyCtxt<'tcx>>>> for PolyTraitPredicate<'tcx>
impl<'tcx> UpcastFrom<TyCtxt<'tcx>, Binder<TyCtxt<'tcx>, TraitRef<TyCtxt<'tcx>>>> for PolyTraitPredicate<'tcx>
impl<I, T> Copy for Binder<I, T>
impl<I, T> Eq for Binder<I, 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.