pub struct PdbLookupConfig { /* private fields */ }Expand description
Holds the details of where PDBs can be looked up from; both locally and online if possible.
Implementations§
Source§impl PdbLookupConfig
impl PdbLookupConfig
pub fn new(symcache: PathBuf) -> Result<Self>
pub fn with_msft_symsrv(symcache: PathBuf) -> Result<Self>
pub fn with_symsrvs(symcache: PathBuf, symsrvs: Vec<String>) -> Result<Self>
pub fn symcache(&self) -> &Path
pub fn is_offline(&self) -> bool
pub fn is_online(&self) -> bool
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PdbLookupConfig
impl RefUnwindSafe for PdbLookupConfig
impl Send for PdbLookupConfig
impl Sync for PdbLookupConfig
impl Unpin for PdbLookupConfig
impl UnsafeUnpin for PdbLookupConfig
impl UnwindSafe for PdbLookupConfig
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