Enum spack::utils::prefix::PrefixTraversalError
source · pub enum PrefixTraversalError {
Walkdir(Error),
NeededLibrariesNotFound(IndexSet<LibraryName>, Prefix, IndexSet<LibraryName>),
DuplicateLibraryNames(IndexSet<LibraryName>, Prefix, IndexMap<LibraryName, Vec<CABILibrary>>),
}Variants§
Walkdir(Error)
walkdir error: {0}
NeededLibrariesNotFound(IndexSet<LibraryName>, Prefix, IndexSet<LibraryName>)
needed libs {0:?} not found at prefix {1:?}: found libs were {2:?}
DuplicateLibraryNames(IndexSet<LibraryName>, Prefix, IndexMap<LibraryName, Vec<CABILibrary>>)
duplicated libs {0:?} found at multiple paths from prefix {1:?}:\n{2:?}
Trait Implementations§
source§impl Debug for PrefixTraversalError
impl Debug for PrefixTraversalError
source§impl Display for PrefixTraversalError
impl Display for PrefixTraversalError
source§impl Error for PrefixTraversalError
impl Error for PrefixTraversalError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl !RefUnwindSafe for PrefixTraversalError
impl Send for PrefixTraversalError
impl Sync for PrefixTraversalError
impl Unpin for PrefixTraversalError
impl !UnwindSafe for PrefixTraversalError
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