Enum ErrorCode
#[non_exhaustive]pub enum ErrorCode {
TpmError(Tpm2ErrorCode),
FapiError(BaseErrorCode),
EsysApiError(BaseErrorCode),
SysApiError(BaseErrorCode),
MuApiError(BaseErrorCode),
TctiError(BaseErrorCode),
ResMgrError(BaseErrorCode),
ResMgrTpmError(BaseErrorCode),
OtherError(BaseErrorCode),
InternalError(InternalError),
}Expand description
The error type for FAPI operations, used by the FapiContext struct.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
TpmError(Tpm2ErrorCode)
FapiError(BaseErrorCode)
EsysApiError(BaseErrorCode)
SysApiError(BaseErrorCode)
MuApiError(BaseErrorCode)
TctiError(BaseErrorCode)
ResMgrError(BaseErrorCode)
ResMgrTpmError(BaseErrorCode)
OtherError(BaseErrorCode)
InternalError(InternalError)
Trait Implementations§
§impl Ord for ErrorCode
impl Ord for ErrorCode
§impl PartialOrd for ErrorCode
impl PartialOrd for ErrorCode
impl Copy for ErrorCode
impl Eq for ErrorCode
impl StructuralPartialEq for ErrorCode
Auto Trait Implementations§
impl Freeze for ErrorCode
impl RefUnwindSafe for ErrorCode
impl Send for ErrorCode
impl Sync for ErrorCode
impl Unpin for ErrorCode
impl UnwindSafe for ErrorCode
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