Skip to main content

Unnormalized

Struct Unnormalized 

Source
pub struct Unnormalized<I, T>
where I: Interner,
{ value: T, _tcx: PhantomData<fn() -> I>, }
Expand description

A wrapper for values that need normalization.

FIXME(#155345): This is very WIP. The plan is to replace the skip_norm_wip spread throughout the codebase with proper normalization. This is the first step toward switching to eager normalization with the next solver. See the normalization refactor plan here.

We’re in a weird intermediate state as the change is too big to land in a single PR. While this work is in progress, just use Unnormalized::new_wip and Unnormalized::skip_norm_wip as needed.

The interner type parameter exists to constraint generic for certain impl, e.g., Unnormalized<I, I::Clause>.

Fields§

§value: T§_tcx: PhantomData<fn() -> I>

Implementations§

Source§

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

Source

pub fn new(value: T) -> Unnormalized<I, T>

Should only be used in limited situations where you produce an potentially unnormalized value, like in (Early)Binder/GenericPredicates instantiation.

Source

pub fn new_wip(value: T) -> Unnormalized<I, T>

FIXME: This is going to be eventually removed once we migrate the relevant APIs to return Unnormalized.

Source

pub fn skip_normalization(self) -> T

Intentionally skip normalization. You probably should perform normalization in most cases.

Source

pub fn skip_norm_wip(self) -> T

FIXME: This is going to be eventually removed. If you meet this in codebase, try using one of the normalization routines to consume the Unnormalized wrapper. Or use skip_normalization when normalization is really unnecessary.

Source

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

Source

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

Source

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

Source§

impl<I, T, U> Unnormalized<I, (T, U)>
where I: Interner,

Source

pub fn unzip(self) -> (Unnormalized<I, T>, Unnormalized<I, U>)

Source§

impl<I, T> Unnormalized<I, Binder<I, T>>
where I: Interner,

Source

pub fn skip_binder(self) -> T

Source§

impl<I> Unnormalized<I, <I as Interner>::Clause>
where I: Interner,

Source

pub fn as_trait_clause( self, ) -> Option<Unnormalized<I, Binder<I, TraitPredicate<I>>>>

Source

pub fn kind(self) -> Unnormalized<I, Binder<I, ClauseKind<I>>>

Source§

impl<I> Unnormalized<I, Binder<I, TraitPredicate<I>>>
where I: Interner,

Source

pub fn self_ty(self) -> Unnormalized<I, Binder<I, <I as Interner>::Ty>>

Source

pub fn def_id(self) -> <I as Interner>::TraitId

Source

pub fn polarity(self) -> PredicatePolarity

Source§

impl<I> Unnormalized<I, Binder<I, TraitRef<I>>>
where I: Interner,

Source

pub fn self_ty(&self) -> Unnormalized<I, Binder<I, <I as Interner>::Ty>>

Source

pub fn def_id(&self) -> <I as Interner>::TraitId

Source

pub fn to_host_effect_clause( self, cx: I, constness: BoundConstness, ) -> Unnormalized<I, <I as Interner>::Clause>

Trait Implementations§

Source§

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

Source§

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

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, T> Debug for Unnormalized<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> PartialEq for Unnormalized<I, T>
where I: Interner, T: PartialEq,

Source§

fn eq(&self, __other: &Unnormalized<I, T>) -> 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, T> PartialOrd for Unnormalized<I, T>
where I: Interner, T: PartialOrd,

Source§

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

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · 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
1.0.0 (const: unstable) · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · 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 Unnormalized<I, T>
where I: Interner, T: Copy,

Auto Trait Implementations§

§

impl<I, T> DynSend for Unnormalized<I, T>
where T: DynSend,

§

impl<I, T> DynSync for Unnormalized<I, T>
where T: DynSync,

§

impl<I, T> Freeze for Unnormalized<I, T>
where T: Freeze,

§

impl<I, T> RefUnwindSafe for Unnormalized<I, T>
where T: RefUnwindSafe,

§

impl<I, T> Send for Unnormalized<I, T>
where T: Send,

§

impl<I, T> Sync for Unnormalized<I, T>
where T: Sync,

§

impl<I, T> Unpin for Unnormalized<I, T>
where T: Unpin,

§

impl<I, T> UnsafeUnpin for Unnormalized<I, T>
where T: UnsafeUnpin,

§

impl<I, T> UnwindSafe for Unnormalized<I, T>
where T: UnwindSafe,

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<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for T
where T: Copy,

Source§

fn allocate_on(self, arena: &'tcx Arena<'tcx>) -> &'tcx mut T

Source§

fn allocate_from_iter( arena: &'tcx Arena<'tcx>, iter: impl IntoIterator<Item = T>, ) -> &'tcx mut [T]

Source§

impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for T
where T: Copy,

Source§

fn allocate_on(self, arena: &'tcx Arena<'tcx>) -> &'tcx mut T

Source§

fn allocate_from_iter( arena: &'tcx Arena<'tcx>, iter: impl IntoIterator<Item = T>, ) -> &'tcx mut [T]

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

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<K> IntoQueryKey<K> for K

Source§

fn into_query_key(self) -> K

Argument conversion from Self to K. This should always be a very cheap conversion, e.g. LocalDefId::to_def_id.
Source§

impl<T> MaybeResult<T> for T

Source§

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