pub enum ArtifactChecksumError {
Io(Error),
UnsupportedAlgorithm(String),
ChecksumMismatch {
expected: String,
actual: String,
},
}Expand description
ArtifactChecksumError
Variants§
Trait Implementations§
Source§impl Debug for ArtifactChecksumError
impl Debug for ArtifactChecksumError
Source§impl Display for ArtifactChecksumError
impl Display for ArtifactChecksumError
Source§impl Error for ArtifactChecksumError
impl Error for ArtifactChecksumError
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<ArtifactChecksumError> for PersistenceError
impl From<ArtifactChecksumError> for PersistenceError
Source§fn from(source: ArtifactChecksumError) -> Self
fn from(source: ArtifactChecksumError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ArtifactChecksumError
impl !RefUnwindSafe for ArtifactChecksumError
impl Send for ArtifactChecksumError
impl Sync for ArtifactChecksumError
impl Unpin for ArtifactChecksumError
impl UnsafeUnpin for ArtifactChecksumError
impl !UnwindSafe for ArtifactChecksumError
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