Struct rustc_span::source_map::FilePathMapping
source · pub struct FilePathMapping {
mapping: Vec<(PathBuf, PathBuf)>,
filename_display_for_diagnostics: FileNameDisplayPreference,
}
Fields§
§mapping: Vec<(PathBuf, PathBuf)>
§filename_display_for_diagnostics: FileNameDisplayPreference
Implementations§
source§impl FilePathMapping
impl FilePathMapping
pub fn empty() -> FilePathMapping
pub fn new(mapping: Vec<(PathBuf, PathBuf)>) -> FilePathMapping
sourcepub fn map_prefix<'a>(
&'a self,
path: impl Into<Cow<'a, Path>>
) -> (Cow<'a, Path>, bool)
pub fn map_prefix<'a>( &'a self, path: impl Into<Cow<'a, Path>> ) -> (Cow<'a, Path>, bool)
Applies any path prefix substitution as defined by the mapping. The return value is the remapped path and a boolean indicating whether the path was affected by the mapping.
fn map_filename_prefix(&self, file: &FileName) -> (FileName, bool)
sourcepub fn to_embeddable_absolute_path(
&self,
file_path: RealFileName,
working_directory: &RealFileName
) -> RealFileName
pub fn to_embeddable_absolute_path( &self, file_path: RealFileName, working_directory: &RealFileName ) -> RealFileName
Expand a relative path to an absolute path with remapping taken into account. Use this when absolute paths are required (e.g. debuginfo or crate metadata).
The resulting RealFileName
will have its local_path
portion erased if
possible (i.e. if there’s also a remapped path).
sourcefn reverse_map_prefix_heuristically(&self, path: &Path) -> Option<PathBuf>
fn reverse_map_prefix_heuristically(&self, path: &Path) -> Option<PathBuf>
Attempts to (heuristically) reverse a prefix mapping.
Returns Some
if there is exactly one mapping where the “to” part is
a prefix of path
and has at least one non-empty
Normal
component. The component
restriction exists to avoid reverse mapping overly generic paths like
/
or .
).
This is a heuristic and not guaranteed to return the actual original path! Do not rely on the result unless you have other means to verify that the mapping is correct (e.g. by checking the file content hash).
Trait Implementations§
source§impl Clone for FilePathMapping
impl Clone for FilePathMapping
source§fn clone(&self) -> FilePathMapping
fn clone(&self) -> FilePathMapping
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl RefUnwindSafe for FilePathMapping
impl Send for FilePathMapping
impl Sync for FilePathMapping
impl Unpin for FilePathMapping
impl UnwindSafe for FilePathMapping
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
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: 32 bytes