pub type BorrowckResults<'mir, 'tcx> = BorrowckAnalyses<Results<'tcx, Borrows<'mir, 'tcx>>, Results<'tcx, MaybeUninitializedPlaces<'mir, 'tcx>>, Results<'tcx, EverInitializedPlaces<'mir, 'tcx>>>;
Expand description

The results of the dataflow analyses used by the borrow checker.

Aliased Type§

struct BorrowckResults<'mir, 'tcx> {
    pub borrows: Results<'tcx, Borrows<'mir, 'tcx>, IndexVec<BasicBlock, BitSet<BorrowIndex>>>,
    pub uninits: Results<'tcx, MaybeUninitializedPlaces<'mir, 'tcx>, IndexVec<BasicBlock, ChunkedBitSet<MovePathIndex>>>,
    pub ever_inits: Results<'tcx, EverInitializedPlaces<'mir, 'tcx>, IndexVec<BasicBlock, ChunkedBitSet<InitIndex>>>,
}

Fields§

§borrows: Results<'tcx, Borrows<'mir, 'tcx>, IndexVec<BasicBlock, BitSet<BorrowIndex>>>§uninits: Results<'tcx, MaybeUninitializedPlaces<'mir, 'tcx>, IndexVec<BasicBlock, ChunkedBitSet<MovePathIndex>>>§ever_inits: Results<'tcx, EverInitializedPlaces<'mir, 'tcx>, IndexVec<BasicBlock, ChunkedBitSet<InitIndex>>>

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