rustc_middle::ty

Type Alias EarlyBinder

source
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>
where I: Interner, Iter: IntoIterator, <Iter as IntoIterator>::Item: TypeFoldable<I>,

source

pub fn iter_instantiated<A>( self, cx: I, args: A, ) -> IterInstantiated<I, Iter, A>
where A: SliceLike<Item = <I as Interner>::GenericArg>,

source

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>,

source

pub fn iter_instantiated_copied( self, cx: I, args: &'s [<I as Interner>::GenericArg], ) -> IterInstantiatedCopied<'s, I, Iter>

source

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,

source

pub fn transpose(self) -> Option<EarlyBinder<I, T>>

source§

impl<I, T> EarlyBinder<I, T>
where I: Interner,

source

pub fn bind(value: T) -> EarlyBinder<I, T>

source

pub fn as_ref(&self) -> EarlyBinder<I, &T>

source

pub fn map_bound_ref<F, U>(&self, f: F) -> EarlyBinder<I, U>
where F: FnOnce(&T) -> U,

source

pub fn map_bound<F, U>(self, f: F) -> EarlyBinder<I, U>
where F: FnOnce(T) -> U,

source

pub fn try_map_bound<F, U, E>(self, f: F) -> Result<EarlyBinder<I, U>, E>
where F: FnOnce(T) -> Result<U, E>,

source

pub fn rebind<U>(&self, value: U) -> EarlyBinder<I, U>

source

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,

source§

impl<I, T> EarlyBinder<I, T>
where I: Interner, T: TypeFoldable<I>,

source

pub fn instantiate<A>(self, cx: I, args: A) -> T
where A: SliceLike<Item = <I as Interner>::GenericArg>,

source

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 of EarlyBinder).
  • Inside of the body of foo, we treat T as a placeholder by calling instantiate_identity to discharge the EarlyBinder.
source

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>

source§

impl<T: ParameterizedOverTcx> ParameterizedOverTcx for EarlyBinder<'static, T>

source§

type Value<'tcx> = EarlyBinder<TyCtxt<'tcx>, <T as ParameterizedOverTcx>::Value<'tcx>>

source§

impl<'tcx> Value<TyCtxt<'tcx>> for EarlyBinder<'_, Binder<'_, FnSig<'_>>>

source§

fn from_cycle_error( tcx: TyCtxt<'tcx>, cycle_error: &CycleError, guar: ErrorGuaranteed, ) -> Self

source§

impl<'tcx> Value<TyCtxt<'tcx>> for EarlyBinder<'_, Ty<'_>>

source§

fn from_cycle_error( tcx: TyCtxt<'tcx>, cycle_error: &CycleError, guar: ErrorGuaranteed, ) -> Self

source§

impl<I, T> Clone for EarlyBinder<I, T>
where I: Interner, T: Clone,

source§

fn clone(&self) -> EarlyBinder<I, T>

Returns a copy of the value. Read more
source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<I, T> Debug for EarlyBinder<I, T>
where I: Interner, T: Debug,

source§

fn fmt(&self, __f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<I, T, __D> Decodable<__D> for EarlyBinder<I, T>
where I: Interner, __D: TyDecoder<I = I>, T: Decodable<__D>, PhantomData<I>: Decodable<__D>,

source§

fn decode(__decoder: &mut __D) -> EarlyBinder<I, T>

source§

impl<I, T, __E> Encodable<__E> for EarlyBinder<I, T>
where I: Interner, __E: TyEncoder<I = I>, T: Encodable<__E>, PhantomData<I>: Encodable<__E>,

source§

fn encode(&self, __encoder: &mut __E)

source§

impl<I, T> Hash for EarlyBinder<I, T>
where I: Interner, T: Hash,

source§

fn hash<__H>(&self, __state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<I, T, __CTX> HashStable<__CTX> for EarlyBinder<I, T>
where I: Interner, T: HashStable<__CTX>, PhantomData<I>: HashStable<__CTX>,

source§

fn hash_stable( &self, __hcx: &mut __CTX, __hasher: &mut StableHasher<SipHasher128>, )

source§

impl<I, T> Ord for EarlyBinder<I, T>
where I: Interner, T: Ord,

source§

fn cmp(&self, __other: &EarlyBinder<I, T>) -> Ordering

This method returns an Ordering between self and other. Read more
source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
source§

impl<I, T> PartialEq for EarlyBinder<I, T>
where I: Interner, T: PartialEq,

source§

fn eq(&self, __other: &EarlyBinder<I, T>) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<I, T> PartialOrd for EarlyBinder<I, T>
where I: Interner, T: Ord,

source§

fn partial_cmp(&self, __other: &EarlyBinder<I, T>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<I, T> Copy for EarlyBinder<I, T>
where I: Interner, T: Copy,

source§

impl<I, T> Eq for EarlyBinder<I, T>
where I: Interner, T: Eq,

source§

impl<I, T> !TypeFoldable<I> for EarlyBinder<I, T>
where I: Interner,

For early binders, you should first call instantiate before using any visitors.

source§

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.