Skip to main content

Assumptions

Struct Assumptions 

Source
pub struct Assumptions<I: Interner> {
    pub type_outlives: Vec<Binder<I, OutlivesClause<I, I::Ty>>>,
    pub region_outlives: TransitiveRelation<Region<I>>,
    pub inverse_region_outlives: TransitiveRelation<Region<I>>,
}

Fields§

§type_outlives: Vec<Binder<I, OutlivesClause<I, I::Ty>>>§region_outlives: TransitiveRelation<Region<I>>

Known 'a: 'b assumptions, stored as an edge from the outliving region to the outlived one, i.e. an edge ('a, 'b) means 'a: 'b. Constructors expect a relation with this direction, see regions_outlived_by and regions_outliving for how it is consumed.

§inverse_region_outlives: TransitiveRelation<Region<I>>

Implementations§

Source§

impl<I: Interner> Assumptions<I>

Source

pub fn empty() -> Self

Source

pub fn new( infcx: &impl InferCtxtLike<Interner = I>, clauses: impl IntoIterator<Item = I::Clause>, region_outlives: TransitiveRelation<Region<I>>, universe: UniverseIndex, ) -> Self

Builds assumptions from clauses, elaborating them and keeping the outlives ones.

Callers hand us their clauses straight from the environment, so we have to elaborate here to get at the implied outlives bounds:

  • a Ty: 'a clause tells us that every region component of Ty outlives 'a, e.g. &'b u8: 'a implies 'b: 'a. Without it we’d fail to prove 'b: 'a when leaving the binder these assumptions belong to.
  • it also gives us the components as type outlives, e.g. Vec<T>: 'a implies T: 'a, which we need for placeholder and alias outlives.
  • trait clauses imply their supertraits, so T: Bound<'a> where trait Bound<'c>: 'c gives us T: 'a. This is why we take clauses rather than just the outlives ones: filtering down to outlives before elaborating would throw those away.

Only the clauses whose max universe is exactly universe are kept, which is what the solver wants when computing the assumptions of a single binder. This happens after elaboration on purpose, so a clause whose regions live in more than one universe still contributes its implied bounds to each of them: (&'b u8, &'c u8): 'a gives us 'c: 'a in 'cs universe even though the clause itself is in 'bs.

Use Assumptions::new_unelaborated when the caller needs the assumptions to be exactly the clauses it passed in.

Source

pub fn new_unelaborated( type_outlives: Vec<Binder<I, OutlivesClause<I, I::Ty>>>, region_outlives: TransitiveRelation<Region<I>>, ) -> Self

Builds assumptions from exactly the given clauses, see Assumptions::new for when the clauses should get elaborated instead.

Trait Implementations§

Source§

impl<I> Clone for Assumptions<I>
where I: Interner,

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl<I> Debug for Assumptions<I>
where I: Interner,

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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<_>>()).

Source§

type Output = R

Source§

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

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<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

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

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

type Error = !

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

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

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

Source§

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<I, T, U> Upcast<I, U> for T
where U: UpcastFrom<I, T>,

Source§

fn upcast(self, interner: I) -> U

Source§

impl<I, T> UpcastFrom<I, T> for T

Source§

fn upcast_from(from: T, _tcx: I) -> T

Source§

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

Source§

fn vzip(self) -> V

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

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: 280 bytes