pub enum E2eIdentityError {
InvalidCertificate,
JsonError(Error),
AcmeError(RustyAcmeError),
JwtError(RustyJwtError),
JwtSimpleError(Error),
NotSupported,
}Expand description
All e2e identity related errors
Variants§
InvalidCertificate
Invalid/incomplete certificate
JsonError(Error)
Json error
AcmeError(RustyAcmeError)
Acme error
JwtError(RustyJwtError)
Error creating the client Dpop token
JwtSimpleError(Error)
Core JWT error
NotSupported
Not supported
Trait Implementations§
Source§impl Debug for E2eIdentityError
impl Debug for E2eIdentityError
Source§impl Display for E2eIdentityError
impl Display for E2eIdentityError
Source§impl Error for E2eIdentityError
impl Error for E2eIdentityError
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 E2eIdentityError
impl From<Error> for E2eIdentityError
Source§impl From<Error> for E2eIdentityError
impl From<Error> for E2eIdentityError
Source§impl From<RustyAcmeError> for E2eIdentityError
impl From<RustyAcmeError> for E2eIdentityError
Source§fn from(source: RustyAcmeError) -> Self
fn from(source: RustyAcmeError) -> Self
Converts to this type from the input type.
Source§impl From<RustyJwtError> for E2eIdentityError
impl From<RustyJwtError> for E2eIdentityError
Source§fn from(source: RustyJwtError) -> Self
fn from(source: RustyJwtError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for E2eIdentityError
impl !RefUnwindSafe for E2eIdentityError
impl Send for E2eIdentityError
impl Sync for E2eIdentityError
impl Unpin for E2eIdentityError
impl !UnwindSafe for E2eIdentityError
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