Skip to main content

RegionConstraint

Enum RegionConstraint 

Source
pub enum RegionConstraint<I: Interner> {
    Ambiguity,
    RegionOutlives(I::Region, I::Region),
    AliasTyOutlivesViaEnv(Binder<I, (AliasTy<I>, I::Region)>),
    PlaceholderTyOutlives(I::Ty, I::Region),
    And(Box<[RegionConstraint<I>]>),
    Or(Box<[RegionConstraint<I>]>),
}

Variants§

§

Ambiguity

§

RegionOutlives(I::Region, I::Region)

§

AliasTyOutlivesViaEnv(Binder<I, (AliasTy<I>, I::Region)>)

Requirement that a (potentially higher ranked) alias outlives some (potentially higher ranked) region due to an assumption in the environment. This cannot be satisfied via component outlives or item bounds.

We cannot eagerly look at assumptions as we are usually working with an incomplete set of assumptions and there may wind up being assumptions we can use to prove this when we’re in a smaller universe.

We eagerly destructure alias outlives requirements into region outlives requirements corresponding to component outlives & item bound outlives rules, leaving only param env candidates.

§

PlaceholderTyOutlives(I::Ty, I::Region)

This is an I::Ty for two reasons:

  1. We need the type visitable impl to be able to visit_ty on this so canonicalization knows about the placeholder
  2. When exiting the trait solver there may be placeholder outlives corresponding to params from the root universe. These need to be changed from a Placeholder to the original Param.

We cannot eagerly look at assumptions as we are usually working with an incomplete set of assumptions and there may wind up being assumptions we can use to prove this when we’re in a smaller universe.

§

And(Box<[RegionConstraint<I>]>)

§

Or(Box<[RegionConstraint<I>]>)

Implementations§

Source§

impl<I: Interner> RegionConstraint<I>

Source

pub fn new_true() -> Self

Source

pub fn is_true(&self) -> bool

Source

pub fn new_false() -> Self

Source

pub fn is_false(&self) -> bool

Source

pub fn is_or(&self) -> bool

Source

pub fn unwrap_or(self) -> Box<[RegionConstraint<I>]>

Source

pub fn unwrap_and(self) -> Box<[RegionConstraint<I>]>

Source

pub fn is_and(&self) -> bool

Source

pub fn is_ambig(&self) -> bool

Source

pub fn and(self, other: RegionConstraint<I>) -> RegionConstraint<I>

Source

pub fn canonical_form(self) -> Self

Converts the region constraint into an ORs of ANDs of “leaf” constraints. Where a leaf constraint is a non-or/and constraint.

Source

fn is_leaf_constraint(&self) -> bool

Source

fn is_canonical_and(&self) -> bool

Source

pub fn is_canonical_form(&self) -> bool

Trait Implementations§

Source§

impl<I> Clone for RegionConstraint<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 RegionConstraint<I>
where I: Interner,

Source§

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

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

impl<I: Interner> Default for RegionConstraint<I>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<I> Hash for RegionConstraint<I>
where I: Interner,

Source§

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

Feeds this value into the given Hasher. Read more
1.3.0 · 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> PartialEq for RegionConstraint<I>
where I: Interner,

Source§

fn eq(&self, __other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · 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: Interner> StableHash for RegionConstraint<I>

Available on crate feature nightly only.
Source§

fn stable_hash<CTX: StableHashCtxt>( &self, hcx: &mut CTX, hasher: &mut StableHasher, )

Source§

impl<I: Interner> TypeFoldable<I> for RegionConstraint<I>

Source§

fn try_fold_with<F: FallibleTypeFolder<I>>( self, f: &mut F, ) -> Result<Self, F::Error>

The entry point for folding. To fold a value t with a folder f call: t.try_fold_with(f). Read more
Source§

fn fold_with<F: TypeFolder<I>>(self, f: &mut F) -> Self

The entry point for folding. To fold a value t with a folder f call: t.fold_with(f). Read more
Source§

impl<I: Interner> TypeVisitable<I> for RegionConstraint<I>

Source§

fn visit_with<F: TypeVisitor<I>>(&self, f: &mut F) -> F::Result

The entry point for visiting. To visit a value t with a visitor v call: t.visit_with(v). Read more

Auto Trait Implementations§

§

impl<I> DynSend for RegionConstraint<I>

§

impl<I> DynSync for RegionConstraint<I>

§

impl<I> Freeze for RegionConstraint<I>

§

impl<I> RefUnwindSafe for RegionConstraint<I>

§

impl<I> Send for RegionConstraint<I>

§

impl<I> Sync for RegionConstraint<I>

§

impl<I> Unpin for RegionConstraint<I>

§

impl<I> UnsafeUnpin for RegionConstraint<I>

§

impl<I> UnwindSafe for RegionConstraint<I>

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> AnyEq for T
where T: Any + PartialEq,

Source§

fn equals(&self, other: &(dyn Any + 'static)) -> bool

Source§

fn as_any(&self) -> &(dyn Any + 'static)

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

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> TypeVisitableExt<I> for T
where I: Interner, T: TypeVisitable<I>,

Source§

fn has_type_flags(&self, flags: TypeFlags) -> bool

Source§

fn has_vars_bound_at_or_above(&self, binder: DebruijnIndex) -> bool

Returns true if self has any late-bound regions that are either bound by binder or bound by some binder outside of binder. If binder is ty::INNERMOST, this indicates whether there are any late-bound regions that appear free.
Source§

fn error_reported(&self) -> Result<(), <I as Interner>::ErrorGuaranteed>

Source§

fn non_region_error_reported( &self, ) -> Result<(), <I as Interner>::ErrorGuaranteed>

Source§

fn has_vars_bound_above(&self, binder: DebruijnIndex) -> bool

Returns true if this type has any regions that escape binder (and hence are not bound by it).
Source§

fn has_escaping_bound_vars(&self) -> bool

Returns true if this type has regions that are not a part of the type. For example, given a for<'a> fn(&'a i32) this function returns false, while given a fn(&'a i32) it returns true. The latter can occur when traversing through the former. Read more
Source§

fn has_aliases(&self) -> bool

Source§

fn has_opaque_types(&self) -> bool

Source§

fn has_coroutines(&self) -> bool

Source§

fn references_error(&self) -> bool

Source§

fn has_non_region_param(&self) -> bool

Source§

fn has_regions(&self) -> bool

Source§

fn has_infer_regions(&self) -> bool

Source§

fn has_infer_types(&self) -> bool

Source§

fn has_non_region_infer(&self) -> bool

Source§

fn has_infer(&self) -> bool

Source§

fn has_placeholders(&self) -> bool

Source§

fn has_non_region_placeholders(&self) -> bool

Source§

fn has_param(&self) -> bool

Source§

fn has_free_regions(&self) -> bool

“Free” regions in this context means that it has any region that is not (a) erased or (b) late-bound.
Source§

fn has_erased_regions(&self) -> bool

Source§

fn has_erasable_regions(&self) -> bool

True if there are any un-erased free regions.
Source§

fn is_global(&self) -> bool

Indicates whether this value references only ‘global’ generic parameters that are the same regardless of what fn we are in. This is used for caching.
Source§

fn has_bound_regions(&self) -> bool

True if there are any late-bound regions
Source§

fn has_non_region_bound_vars(&self) -> bool

True if there are any late-bound non-region variables
Source§

fn has_bound_vars(&self) -> bool

True if there are any bound variables
Source§

fn still_further_specializable(&self) -> bool

Indicates whether this value still has parameters/placeholders/inference variables which could be replaced later, in a way that would change the results of impl specialization.
Source§

fn has_non_region_error(&self) -> bool

True if a type or const error is reachable
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
Source§

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

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.