pub type NormalizedTerm<'tcx> = Normalized<'tcx, Term<'tcx>>;
Aliased Type§
struct NormalizedTerm<'tcx> {
pub value: Term<'tcx>,
pub obligations: ThinVec<Obligation<'tcx, Predicate<'tcx>>>,
}
Fields§
§value: Term<'tcx>
§obligations: ThinVec<Obligation<'tcx, Predicate<'tcx>>>
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: 16 bytes
Implementations
Source§impl<'tcx, T> Normalized<'tcx, T>
impl<'tcx, T> Normalized<'tcx, T>
pub fn with<U>(self, value: U) -> Normalized<'tcx, U>
Trait Implementations
Source§impl<'tcx, T: Clone> Clone for Normalized<'tcx, T>
impl<'tcx, T: Clone> Clone for Normalized<'tcx, T>
Source§fn clone(&self) -> Normalized<'tcx, T>
fn clone(&self) -> Normalized<'tcx, T>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more