pub enum ProveError {
NotInTee,
UnknownPlatform(String),
DcapQuote(QuoteGenerationError),
Io(Error),
MemInfoParse,
Ccel(Error),
Azure(AzureError),
}Variants§
NotInTee
UnknownPlatform(String)
DcapQuote(QuoteGenerationError)
Io(Error)
MemInfoParse
Ccel(Error)
Azure(AzureError)
Trait Implementations§
Source§impl Debug for ProveError
impl Debug for ProveError
Source§impl Display for ProveError
impl Display for ProveError
Source§impl Error for ProveError
impl Error for ProveError
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<AzureError> for ProveError
impl From<AzureError> for ProveError
Source§fn from(source: AzureError) -> Self
fn from(source: AzureError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for ProveError
impl From<Error> for ProveError
Source§impl From<QuoteGenerationError> for ProveError
impl From<QuoteGenerationError> for ProveError
Source§fn from(source: QuoteGenerationError) -> Self
fn from(source: QuoteGenerationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ProveError
impl !RefUnwindSafe for ProveError
impl Send for ProveError
impl Sync for ProveError
impl Unpin for ProveError
impl UnsafeUnpin for ProveError
impl !UnwindSafe for ProveError
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