pub enum ReverifyError {
NoEnvelope {
digest: String,
},
Verify(VerifyError),
PayloadMismatch,
Manifest(ManifestError),
MissingTool {
tool: String,
},
ToolDigestMismatch {
tool: String,
digest: String,
},
Store(StoreError),
Io {
path: String,
source: Error,
},
}Variants§
NoEnvelope
Verify(VerifyError)
PayloadMismatch
Manifest(ManifestError)
MissingTool
ToolDigestMismatch
Store(StoreError)
Io
Trait Implementations§
Source§impl Debug for ReverifyError
impl Debug for ReverifyError
Source§impl Display for ReverifyError
impl Display for ReverifyError
Source§impl Error for ReverifyError
impl Error for ReverifyError
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<ManifestError> for ReverifyError
impl From<ManifestError> for ReverifyError
Source§fn from(source: ManifestError) -> Self
fn from(source: ManifestError) -> Self
Converts to this type from the input type.
Source§impl From<StoreError> for ReverifyError
impl From<StoreError> for ReverifyError
Source§fn from(source: StoreError) -> Self
fn from(source: StoreError) -> Self
Converts to this type from the input type.
Source§impl From<VerifyError> for ReverifyError
impl From<VerifyError> for ReverifyError
Source§fn from(source: VerifyError) -> Self
fn from(source: VerifyError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for ReverifyError
impl !UnwindSafe for ReverifyError
impl Freeze for ReverifyError
impl Send for ReverifyError
impl Sync for ReverifyError
impl Unpin for ReverifyError
impl UnsafeUnpin for ReverifyError
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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