Trait DwarfDb

Source
pub trait DwarfDb: Database {
    // Required method
    fn get_source_map(&self) -> &[(PathBuf, PathBuf)];

    // Provided method
    fn remap_path(&self, path: &Path) -> PathBuf { ... }
}

Required Methods§

Source

fn get_source_map(&self) -> &[(PathBuf, PathBuf)]

Get the source map for path remapping

Provided Methods§

Source

fn remap_path(&self, path: &Path) -> PathBuf

Get source path remapping

Implementors§