pub struct VerifyBoundCx<'cx, 'tcx> {
    tcx: TyCtxt<'tcx>,
    region_bound_pairs: &'cx RegionBoundPairs<'tcx>,
    implicit_region_bound: Option<Region<'tcx>>,
    caller_bounds: &'cx [PolyTypeOutlivesPredicate<'tcx>],
}
Expand description

The TypeOutlives struct has the job of “lowering” a T: 'a obligation into a series of 'a: 'b constraints and “verifys”, as described on the module comment. The final constraints are emitted via a “delegate” of type D – this is usually the infcx, which accrues them into the region_obligations code, but for NLL we use something else.

Fields§

§tcx: TyCtxt<'tcx>§region_bound_pairs: &'cx RegionBoundPairs<'tcx>§implicit_region_bound: Option<Region<'tcx>>

During borrowck, if there are no outlives bounds on a generic parameter T, we assume that T: 'in_fn_body holds.

Outside of borrowck the only way to prove T: '?0 is by setting '?0 to 'empty.

§caller_bounds: &'cx [PolyTypeOutlivesPredicate<'tcx>]

Implementations§

source§

impl<'cx, 'tcx> VerifyBoundCx<'cx, 'tcx>

source

pub fn new( tcx: TyCtxt<'tcx>, region_bound_pairs: &'cx RegionBoundPairs<'tcx>, implicit_region_bound: Option<Region<'tcx>>, caller_bounds: &'cx [PolyTypeOutlivesPredicate<'tcx>] ) -> Self

source

pub fn param_or_placeholder_bound(&self, ty: Ty<'tcx>) -> VerifyBound<'tcx>

source

pub fn approx_declared_bounds_from_env( &self, alias_ty: AliasTy<'tcx> ) -> Vec<Binder<'tcx, OutlivesPredicate<Ty<'tcx>, Region<'tcx>>>>

Given a projection like T::Item, searches the environment for where-clauses like T::Item: 'a. Returns the set of regions 'a that it finds.

This is an “approximate” check – it may not find all applicable bounds, and not all the bounds it returns can be relied upon. In particular, this check ignores region identity. So, for example, if we have <T as Trait<'0>>::Item where '0 is a region variable, and the user has <T as Trait<'a>>::Item: 'b in the environment, then the clause from the environment only applies if '0 = 'a, which we don’t know yet. But we would still include 'b in this list.

source

pub fn alias_bound( &self, alias_ty: AliasTy<'tcx>, visited: &mut SsoHashSet<GenericArg<'tcx>> ) -> VerifyBound<'tcx>

source

fn bound_from_components( &self, components: &[Component<'tcx>], visited: &mut SsoHashSet<GenericArg<'tcx>> ) -> VerifyBound<'tcx>

source

fn bound_from_single_component( &self, component: &Component<'tcx>, visited: &mut SsoHashSet<GenericArg<'tcx>> ) -> VerifyBound<'tcx>

source

fn declared_generic_bounds_from_env( &self, generic_ty: Ty<'tcx> ) -> Vec<Binder<'tcx, OutlivesPredicate<Ty<'tcx>, Region<'tcx>>>>

Searches the environment for where-clauses like G: 'a where G is either some type parameter T or a projection like T::Item. Returns a vector of the 'a bounds it can find.

This is a conservative check – it may not find all applicable bounds, but all the bounds it returns can be relied upon.

source

fn declared_generic_bounds_from_env_for_erased_ty( &self, erased_ty: Ty<'tcx> ) -> Vec<Binder<'tcx, OutlivesPredicate<Ty<'tcx>, Region<'tcx>>>>

Searches the environment to find all bounds that apply to erased_ty. Obviously these must be approximate – they are in fact both over and and under approximated:

  • Over-approximated because we erase regions, so
  • Under-approximated because we look for syntactic equality and so for complex types like <T as Foo<fn(&u32, &u32)>>::Item or whatever we may fail to figure out all the subtleties.

In some cases, such as when erased_ty represents a ty::Param, however, the result is precise.

source

pub fn declared_bounds_from_definition( &self, alias_ty: AliasTy<'tcx> ) -> impl Iterator<Item = Region<'tcx>>

Given a projection like <T as Foo<'x>>::Bar, returns any bounds declared in the trait definition. For example, if the trait were

trait Foo<'a> {
    type Bar: 'a;
}

If we were given the DefId of Foo::Bar, we would return 'a. You could then apply the instantiations from the projection to convert this into your namespace. This also works if the user writes where <Self as Foo<'a>>::Bar: 'a on the trait. In fact, it works by searching for just such a where-clause.

It will not, however, work for higher-ranked bounds like:

```ignore(this does compile today, previously was marked as compile_fail,E0311) trait Foo<’a, ’b> where for<’x> <Self as Foo<’x, ’b>>::Bar: ’x { type Bar; }


This is for simplicity, and because we are not really smart
enough to cope with such bounds anywhere.

Auto Trait Implementations§

§

impl<'cx, 'tcx> DynSend for VerifyBoundCx<'cx, 'tcx>

§

impl<'cx, 'tcx> DynSync for VerifyBoundCx<'cx, 'tcx>

§

impl<'cx, 'tcx> Freeze for VerifyBoundCx<'cx, 'tcx>

§

impl<'cx, 'tcx> !RefUnwindSafe for VerifyBoundCx<'cx, 'tcx>

§

impl<'cx, 'tcx> !Send for VerifyBoundCx<'cx, 'tcx>

§

impl<'cx, 'tcx> !Sync for VerifyBoundCx<'cx, 'tcx>

§

impl<'cx, 'tcx> Unpin for VerifyBoundCx<'cx, 'tcx>

§

impl<'cx, 'tcx> !UnwindSafe for VerifyBoundCx<'cx, 'tcx>

Blanket Implementations§

source§

impl<T> Aligned for T

source§

const ALIGN: Alignment = _

Alignment of Self.
source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T, R> CollectAndApply<T, R> for T

source§

fn collect_and_apply<I, F>(iter: I, f: F) -> R
where I: Iterator<Item = T>, F: FnOnce(&[T]) -> R,

Equivalent to f(&iter.collect::<Vec<_>>()).

§

type Output = R

source§

impl<T> Filterable for T

source§

fn filterable( self, filter_name: &'static str ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>

Creates a filterable data provider with the given name for debugging. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<P> IntoQueryParam<P> for P

source§

impl<T> MaybeResult<T> for T

§

type Error = !

source§

fn from(_: Result<T, <T as MaybeResult<T>>::Error>) -> T

source§

fn to_result(self) -> Result<T, <T as MaybeResult<T>>::Error>

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<'tcx, T> ToPredicate<'tcx, T> for T

source§

fn to_predicate(self, _tcx: TyCtxt<'tcx>) -> T

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<Tcx, T> Value<Tcx> for T
where Tcx: DepContext,

source§

default fn from_cycle_error( tcx: Tcx, cycle_error: &CycleError, _guar: ErrorGuaranteed ) -> T

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<'a, T> Captures<'a> for T
where T: ?Sized,

source§

impl<T> ErasedDestructor for T
where T: 'static,

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 40 bytes