pub enum VerifyError {
Transport {
what: &'static str,
source: Box<dyn Error + Send + Sync>,
},
Malformed {
what: &'static str,
detail: String,
},
Policy(String),
UnknownProvider(String),
}Expand description
Errors a ConfidentialVerifier can return.
Note that a failed
verification is not an error — it is a verdict with verified=false
(fail-closed). VerifyError is reserved for the verifier being unable to
even reach a verdict it can trust (misconfiguration, malformed input).
Variants§
Transport
A network fetch (report, signature, NRAS) failed.
Malformed
A wire payload could not be parsed into the expected shape.
Policy(String)
The DCAP policy was constructed without the mandatory pins (spec §1.5 cond. 1). The verifier refuses to run unpinned.
UnknownProvider(String)
No verifier is registered for the requested provider.
Trait Implementations§
Source§impl Debug for VerifyError
impl Debug for VerifyError
Source§impl Display for VerifyError
impl Display for VerifyError
Source§impl Error for VerifyError
impl Error for VerifyError
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 !RefUnwindSafe for VerifyError
impl !UnwindSafe for VerifyError
impl Freeze for VerifyError
impl Send for VerifyError
impl Sync for VerifyError
impl Unpin for VerifyError
impl UnsafeUnpin for VerifyError
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