pub enum DependencyResolutionError {
Io(Error),
MissingDependency(String),
}Expand description
Error whilst resolving a dependency path
Variants§
Trait Implementations§
Source§impl Debug for DependencyResolutionError
impl Debug for DependencyResolutionError
Source§impl Display for DependencyResolutionError
impl Display for DependencyResolutionError
Source§impl Error for DependencyResolutionError
impl Error for DependencyResolutionError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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 Freeze for DependencyResolutionError
impl !RefUnwindSafe for DependencyResolutionError
impl Send for DependencyResolutionError
impl Sync for DependencyResolutionError
impl Unpin for DependencyResolutionError
impl !UnwindSafe for DependencyResolutionError
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