pub enum QuoteVerificationError {
NoQeReportCertificationData,
BadSignature,
NoPckCertChain,
PckParseVerify(PckParseVerifyError),
}Expand description
An error when verifying a quote with a provisioning certification key (PCK)
Variants§
Trait Implementations§
Source§impl Debug for QuoteVerificationError
impl Debug for QuoteVerificationError
Source§impl Display for QuoteVerificationError
impl Display for QuoteVerificationError
Source§impl Error for QuoteVerificationError
impl Error for QuoteVerificationError
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()
Source§impl From<Error> for QuoteVerificationError
impl From<Error> for QuoteVerificationError
Source§fn from(_: Error) -> QuoteVerificationError
fn from(_: Error) -> QuoteVerificationError
Converts to this type from the input type.
Source§impl From<PckParseVerifyError> for QuoteVerificationError
Available on crate feature pck only.
impl From<PckParseVerifyError> for QuoteVerificationError
Available on crate feature
pck only.Source§fn from(error: PckParseVerifyError) -> QuoteVerificationError
fn from(error: PckParseVerifyError) -> QuoteVerificationError
Converts to this type from the input type.
Source§impl PartialEq for QuoteVerificationError
impl PartialEq for QuoteVerificationError
impl Eq for QuoteVerificationError
impl StructuralPartialEq for QuoteVerificationError
Auto Trait Implementations§
impl Freeze for QuoteVerificationError
impl RefUnwindSafe for QuoteVerificationError
impl Send for QuoteVerificationError
impl Sync for QuoteVerificationError
impl Unpin for QuoteVerificationError
impl UnwindSafe for QuoteVerificationError
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