pub enum ImageDigestParseError {
WrongLength,
WrongPrefix,
HexDecodeError,
}
Expand description
Error parsing a specific image digest.
Variants§
WrongLength
The given digest was of the wrong length.
WrongPrefix
The given digest had an invalid or unsupported prefix.
HexDecodeError
The hex encoding was not valid.
Trait Implementations§
Source§impl Debug for ImageDigestParseError
impl Debug for ImageDigestParseError
Source§impl Display for ImageDigestParseError
impl Display for ImageDigestParseError
Source§impl Error for ImageDigestParseError
impl Error for ImageDigestParseError
1.30.0 · 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 ImageDigestParseError
impl RefUnwindSafe for ImageDigestParseError
impl Send for ImageDigestParseError
impl Sync for ImageDigestParseError
impl Unpin for ImageDigestParseError
impl UnwindSafe for ImageDigestParseError
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