pub struct BorrowSet<'tcx> {
    pub location_map: FxIndexMap<Location, BorrowData<'tcx>>,
    pub activation_map: FxIndexMap<Location, Vec<BorrowIndex>>,
    pub local_map: FxIndexMap<Local, FxIndexSet<BorrowIndex>>,
    pub locals_state_at_exit: LocalsStateAtExit,
}

Fields§

§location_map: FxIndexMap<Location, BorrowData<'tcx>>

The fundamental map relating bitvector indexes to the borrows in the MIR. Each borrow is also uniquely identified in the MIR by the Location of the assignment statement in which it appears on the right hand side. Thus the location is the map key, and its position in the map corresponds to BorrowIndex.

§activation_map: FxIndexMap<Location, Vec<BorrowIndex>>

Locations which activate borrows. NOTE: a given location may activate more than one borrow in the future when more general two-phase borrow support is introduced, but for now we only need to store one borrow index.

§local_map: FxIndexMap<Local, FxIndexSet<BorrowIndex>>

Map from local to all the borrows on that local.

§locals_state_at_exit: LocalsStateAtExit

Implementations§

source§

impl<'tcx> BorrowSet<'tcx>

source

pub fn build( tcx: TyCtxt<'tcx>, body: &Body<'tcx>, locals_are_invalidated_at_exit: bool, move_data: &MoveData<'tcx> ) -> Self

source

pub(crate) fn activations_at_location( &self, location: Location ) -> &[BorrowIndex]

source

pub fn len(&self) -> usize

source

pub(crate) fn indices(&self) -> impl Iterator<Item = BorrowIndex>

source

pub(crate) fn iter_enumerated( &self ) -> impl Iterator<Item = (BorrowIndex, &BorrowData<'tcx>)>

source

pub(crate) fn get_index_of(&self, location: &Location) -> Option<BorrowIndex>

Trait Implementations§

source§

impl<'tcx> Index<BorrowIndex> for BorrowSet<'tcx>

§

type Output = BorrowData<'tcx>

The returned type after indexing.
source§

fn index(&self, index: BorrowIndex) -> &BorrowData<'tcx>

Performs the indexing (container[index]) operation. Read more

Auto Trait Implementations§

§

impl<'tcx> !RefUnwindSafe for BorrowSet<'tcx>

§

impl<'tcx> Send for BorrowSet<'tcx>

§

impl<'tcx> Sync for BorrowSet<'tcx>

§

impl<'tcx> Unpin for BorrowSet<'tcx>

§

impl<'tcx> !UnwindSafe for BorrowSet<'tcx>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere 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, U> TryFrom<U> for Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.

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