Struct rustc::dep_graph::DepTrackingMap [] [src]

pub struct DepTrackingMap<M: DepTrackingMapConfig> {
    // some fields omitted
}
Unstable (rustc_private)

A DepTrackingMap offers a subset of the Map API and ensures that we make calls to read and write as appropriate. We key the maps with a unique type for brevity.

Methods

impl<M: DepTrackingMapConfig> DepTrackingMap<M>
[src]

fn new(graph: DepGraph) -> DepTrackingMap<M>

fn get(&self, k: &M::Key) -> Option<&M::Value>

fn insert(&mut self, k: M::Key, v: M::Value) -> Option<M::Value>

fn contains_key(&self, k: &M::Key) -> bool

Trait Implementations

impl<'k, M: DepTrackingMapConfig> Index<&'k M::Key> for DepTrackingMap<M>
[src]

type Output = M::Value

The returned type after indexing

fn index(&self, k: &'k M::Key) -> &M::Value

The method for the indexing (Foo[Bar]) operation