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

§

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>

pub fn iter_identity_copied(self) -> IterIdentityCopied<Iter>

Similar to instantiate_identity, but on an iterator of values that deref to a TypeFoldable.

§

impl<I, Iter> EarlyBinder<I, Iter>
where I: Interner, Iter: IntoIterator, <Iter as IntoIterator>::Item: TypeFoldable<I>,

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

pub fn iter_identity(self) -> <Iter as IntoIterator>::IntoIter

Similar to instantiate_identity, but on an iterator of TypeFoldable values.

§

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

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

§

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>
where F: FnOnce(&T) -> 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>
where F: FnOnce(T) -> Result<U, E>,

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

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].

§

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

§

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

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

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.

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

§

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

§

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
§

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

§

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

Formats the value using the given formatter. Read more
§

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

§

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

§

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

§

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

§

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

§

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
§

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

§

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

§

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

§

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
§

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

§

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.
§

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

§

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
§

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

§

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

§

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.