type NormalizedInputsAndOutput<'tcx> = Vec<Ty<'tcx>>;
Expand description

As part of computing the free region relations, we also have to normalize the input-output types, which we then need later. So we return those. This vector consists of first the input types and then the output type as the last element.

Aliased Type§

struct NormalizedInputsAndOutput<'tcx> {
    buf: RawVec<Ty<'tcx>>,
    len: usize,
}

Fields§

§buf: RawVec<Ty<'tcx>>§len: usize

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