Struct rustc_hir::definitions::DefPathTable
source · pub struct DefPathTable {
stable_crate_id: StableCrateId,
index_to_key: IndexVec<DefIndex, DefKey>,
def_path_hashes: IndexVec<DefIndex, Hash64>,
def_path_hash_to_index: DefPathHashMap,
}Expand description
The DefPathTable maps DefIndexes to DefKeys and vice versa.
Internally the DefPathTable holds a tree of DefKeys, where each DefKey
stores the DefIndex of its parent.
There is one DefPathTable for each crate.
Fields§
§stable_crate_id: StableCrateId§index_to_key: IndexVec<DefIndex, DefKey>§def_path_hashes: IndexVec<DefIndex, Hash64>§def_path_hash_to_index: DefPathHashMapImplementations§
source§impl DefPathTable
impl DefPathTable
fn new(stable_crate_id: StableCrateId) -> DefPathTable
fn allocate(&mut self, key: DefKey, def_path_hash: DefPathHash) -> DefIndex
pub fn def_key(&self, index: DefIndex) -> DefKey
pub fn def_path_hash(&self, index: DefIndex) -> DefPathHash
pub fn enumerated_keys_and_path_hashes( &self ) -> impl Iterator<Item = (DefIndex, &DefKey, DefPathHash)> + ExactSizeIterator + '_
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for DefPathTable
impl Send for DefPathTable
impl Sync for DefPathTable
impl Unpin for DefPathTable
impl UnwindSafe for DefPathTable
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
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: 72 bytes