pub struct ExternalFileSymbolMap<F: FileContents + 'static>(/* private fields */);Implementations§
Source§impl<F: FileContents + 'static> ExternalFileSymbolMap<F>
impl<F: FileContents + 'static> ExternalFileSymbolMap<F>
pub fn new(file_path: &str, file: F) -> Result<Self, Error>
Sourcepub fn file_path(&self) -> &str
pub fn file_path(&self) -> &str
The string which identifies this external file. This is usually an absolute path.
Sourcepub fn lookup(
&self,
external_file_address: &ExternalFileAddressInFileRef,
) -> Option<Vec<FrameDebugInfo>>
pub fn lookup( &self, external_file_address: &ExternalFileAddressInFileRef, ) -> Option<Vec<FrameDebugInfo>>
Look up the debug info for the given ExternalFileAddressInFileRef.
Auto Trait Implementations§
impl<F> Freeze for ExternalFileSymbolMap<F>
impl<F> !RefUnwindSafe for ExternalFileSymbolMap<F>
impl<F> Send for ExternalFileSymbolMap<F>
impl<F> !Sync for ExternalFileSymbolMap<F>
impl<F> Unpin for ExternalFileSymbolMap<F>
impl<F> !UnwindSafe for ExternalFileSymbolMap<F>
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