Struct rustc_mir::dataflow::move_paths::LocationMap[][src]

pub struct LocationMap<T> {
    pub(crate) map: IndexVec<BasicBlock, Vec<T>>,
}
🔬 This is a nightly-only experimental API. (rustc_private)

this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?

Fields

🔬 This is a nightly-only experimental API. (rustc_private)

this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?

Location-indexed (BasicBlock for outer index, index within BB for inner index) map.

Methods

impl<T> LocationMap<T> where
    T: Default + Clone
[src]

🔬 This is a nightly-only experimental API. (rustc_private)

this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?

Trait Implementations

impl<T: Debug> Debug for LocationMap<T>
[src]

Formats the value using the given formatter. Read more

impl<T> Index<Location> for LocationMap<T>
[src]

The returned type after indexing.

Performs the indexing (container[index]) operation.

impl<T> IndexMut<Location> for LocationMap<T>
[src]

Performs the mutable indexing (container[index]) operation.

Auto Trait Implementations

impl<T> Send for LocationMap<T> where
    T: Send

impl<T> Sync for LocationMap<T> where
    T: Sync