pub enum PathHashMappingError {
EntryHasNoEqualsSign {
entry: String,
},
IoError(Error),
ParseHash(ParseHashError),
ParsePackagePath(ParsePackagePathError),
}
Variants§
EntryHasNoEqualsSign
IoError(Error)
ParseHash(ParseHashError)
ParsePackagePath(ParsePackagePathError)
Trait Implementations§
Source§impl Debug for PathHashMappingError
impl Debug for PathHashMappingError
Source§impl Display for PathHashMappingError
impl Display for PathHashMappingError
Source§impl Error for PathHashMappingError
impl Error for PathHashMappingError
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()
Source§impl From<Error> for PathHashMappingError
impl From<Error> for PathHashMappingError
Source§impl From<ParseHashError> for PathHashMappingError
impl From<ParseHashError> for PathHashMappingError
Source§fn from(source: ParseHashError) -> Self
fn from(source: ParseHashError) -> Self
Converts to this type from the input type.
Source§impl From<ParsePackagePathError> for PathHashMappingError
impl From<ParsePackagePathError> for PathHashMappingError
Source§fn from(source: ParsePackagePathError) -> Self
fn from(source: ParsePackagePathError) -> Self
Converts to this type from the input type.
Source§impl From<PathHashMappingError> for CachePackagesInitError
impl From<PathHashMappingError> for CachePackagesInitError
Source§fn from(source: PathHashMappingError) -> Self
fn from(source: PathHashMappingError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PathHashMappingError
impl !RefUnwindSafe for PathHashMappingError
impl Send for PathHashMappingError
impl Sync for PathHashMappingError
impl Unpin for PathHashMappingError
impl !UnwindSafe for PathHashMappingError
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