pub type EarlyBinder<'tcx, T> = EarlyBinder<TyCtxt<'tcx>, T>;
Aliased Type§
struct EarlyBinder<'tcx, T> { /* private fields */ }
Implementations
source§impl<I, Iter> EarlyBinder<I, Iter>
impl<I, Iter> EarlyBinder<I, Iter>
pub fn iter_instantiated<A>( self, cx: I, args: A, ) -> IterInstantiated<I, Iter, A> ⓘ
sourcepub fn iter_identity(self) -> <Iter as IntoIterator>::IntoIter
pub fn iter_identity(self) -> <Iter as IntoIterator>::IntoIter
Similar to instantiate_identity
,
but on an iterator of TypeFoldable
values.
source§impl<'s, I, Iter> EarlyBinder<I, Iter>where
I: Interner,
Iter: IntoIterator,
<Iter as IntoIterator>::Item: Deref,
<<Iter as IntoIterator>::Item as Deref>::Target: Copy + TypeFoldable<I>,
impl<'s, I, Iter> EarlyBinder<I, Iter>where
I: Interner,
Iter: IntoIterator,
<Iter as IntoIterator>::Item: Deref,
<<Iter as IntoIterator>::Item as Deref>::Target: Copy + TypeFoldable<I>,
pub fn iter_instantiated_copied( self, cx: I, args: &'s [<I as Interner>::GenericArg], ) -> IterInstantiatedCopied<'s, I, Iter> ⓘ
sourcepub fn iter_identity_copied(
self,
) -> impl Iterator<Item = <<Iter as IntoIterator>::Item as Deref>::Target>
pub fn iter_identity_copied( self, ) -> impl Iterator<Item = <<Iter as IntoIterator>::Item as Deref>::Target>
Similar to instantiate_identity
,
but on an iterator of values that deref to a TypeFoldable
.
source§impl<I, T> EarlyBinder<I, Option<T>>where
I: Interner,
impl<I, T> EarlyBinder<I, Option<T>>where
I: Interner,
pub fn transpose(self) -> Option<EarlyBinder<I, T>>
source§impl<I, T> EarlyBinder<I, T>where
I: Interner,
impl<I, T> EarlyBinder<I, T>where
I: Interner,
pub fn bind(value: T) -> EarlyBinder<I, T>
pub fn as_ref(&self) -> EarlyBinder<I, &T>
pub fn map_bound_ref<F, U>(&self, f: F) -> EarlyBinder<I, U>
pub fn map_bound<F, U>(self, f: F) -> EarlyBinder<I, U>where
F: FnOnce(T) -> U,
pub fn try_map_bound<F, U, E>(self, f: F) -> Result<EarlyBinder<I, U>, E>
pub fn rebind<U>(&self, value: U) -> EarlyBinder<I, U>
sourcepub fn skip_binder(self) -> T
pub fn skip_binder(self) -> T
Skips the binder and returns the “bound” value.
This can be used to extract data that does not depend on generic parameters
(e.g., getting the DefId
of the inner value or getting the number of
arguments of an FnSig
). Otherwise, consider using
instantiate_identity
.
To skip the binder on x: &EarlyBinder<I, T>
to obtain &T
, leverage
EarlyBinder::as_ref
: x.as_ref().skip_binder()
.
See also Binder::skip_binder
, which is
the analogous operation on super::Binder
.
source§impl<I, T> EarlyBinder<I, T>where
I: Interner,
T: IntoIterator,
impl<I, T> EarlyBinder<I, T>where
I: Interner,
T: IntoIterator,
pub fn transpose_iter(self) -> EarlyBinderIter<I, <T as IntoIterator>::IntoIter> ⓘ
source§impl<I, T> EarlyBinder<I, T>where
I: Interner,
T: TypeFoldable<I>,
impl<I, T> EarlyBinder<I, T>where
I: Interner,
T: TypeFoldable<I>,
pub fn instantiate<A>(self, cx: I, args: A) -> T
sourcepub fn instantiate_identity(self) -> T
pub fn instantiate_identity(self) -> T
Makes the identity replacement T0 => T0, ..., TN => TN
.
Conceptually, this converts universally bound variables into placeholders
when inside of a given item.
For example, consider for<T> fn foo<T>(){ .. }
:
- Outside of
foo
,T
is bound (represented by the presence ofEarlyBinder
). - Inside of the body of
foo
, we treatT
as a placeholder by callinginstantiate_identity
to discharge theEarlyBinder
.
sourcepub fn no_bound_vars(self) -> Option<T>
pub fn no_bound_vars(self) -> Option<T>
Returns the inner value, but only if it contains no bound vars.
Trait Implementations§
source§impl<T: EraseType> EraseType for EarlyBinder<'_, T>
impl<T: EraseType> EraseType for EarlyBinder<'_, T>
source§impl<T: ParameterizedOverTcx> ParameterizedOverTcx for EarlyBinder<'static, T>
impl<T: ParameterizedOverTcx> ParameterizedOverTcx for EarlyBinder<'static, T>
type Value<'tcx> = EarlyBinder<TyCtxt<'tcx>, <T as ParameterizedOverTcx>::Value<'tcx>>
source§impl<'tcx> Value<TyCtxt<'tcx>> for EarlyBinder<'_, Binder<'_, FnSig<'_>>>
impl<'tcx> Value<TyCtxt<'tcx>> for EarlyBinder<'_, Binder<'_, FnSig<'_>>>
fn from_cycle_error( tcx: TyCtxt<'tcx>, cycle_error: &CycleError, guar: ErrorGuaranteed, ) -> Self
source§impl<'tcx> Value<TyCtxt<'tcx>> for EarlyBinder<'_, Ty<'_>>
impl<'tcx> Value<TyCtxt<'tcx>> for EarlyBinder<'_, Ty<'_>>
fn from_cycle_error( tcx: TyCtxt<'tcx>, cycle_error: &CycleError, guar: ErrorGuaranteed, ) -> Self
source§impl<I, T> Clone for EarlyBinder<I, T>
impl<I, T> Clone for EarlyBinder<I, T>
source§fn clone(&self) -> EarlyBinder<I, T>
fn clone(&self) -> EarlyBinder<I, T>
source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<I, T> Debug for EarlyBinder<I, T>
impl<I, T> Debug for EarlyBinder<I, T>
source§impl<I, T, __D> Decodable<__D> for EarlyBinder<I, T>
impl<I, T, __D> Decodable<__D> for EarlyBinder<I, T>
fn decode(__decoder: &mut __D) -> EarlyBinder<I, T>
source§impl<I, T, __E> Encodable<__E> for EarlyBinder<I, T>
impl<I, T, __E> Encodable<__E> for EarlyBinder<I, T>
source§impl<I, T> Hash for EarlyBinder<I, T>
impl<I, T> Hash for EarlyBinder<I, T>
source§impl<I, T, __CTX> HashStable<__CTX> for EarlyBinder<I, T>
impl<I, T, __CTX> HashStable<__CTX> for EarlyBinder<I, T>
fn hash_stable( &self, __hcx: &mut __CTX, __hasher: &mut StableHasher<SipHasher128>, )
source§impl<I, T> Ord for EarlyBinder<I, T>
impl<I, T> Ord for EarlyBinder<I, T>
source§impl<I, T> PartialEq for EarlyBinder<I, T>
impl<I, T> PartialEq for EarlyBinder<I, T>
source§impl<I, T> PartialOrd for EarlyBinder<I, T>
impl<I, T> PartialOrd for EarlyBinder<I, T>
impl<I, T> Copy for EarlyBinder<I, T>
impl<I, T> Eq for EarlyBinder<I, T>
impl<I, T> !TypeFoldable<I> for EarlyBinder<I, T>where
I: Interner,
For early binders, you should first call instantiate
before using any visitors.
impl<I, T> !TypeVisitable<I> for EarlyBinder<I, T>where
I: Interner,
For early binders, you should first call instantiate
before using any visitors.
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.