pub enum ErrorType {
Show 25 variants
AccountDoesNotExist,
AlreadyRevoked,
BadCertificateSigningRequest,
BadNonce,
BadPublicKey,
BadRevocationReason,
BadSignatureAlgorithm,
CertificationAuthorityAuthorization,
Compound,
Connection,
Dns,
ExternalAccountRequired,
IncorrectResponse,
InvalidContact,
Malformed,
OrderNotReady,
RateLimited,
RejectedIdentifier,
ServerInternal,
Tls,
Unauthorized,
UnsupportedContact,
UnsupportedIdentifier,
UserActionRequired,
Other(String),
}Expand description
Non-exhaustive list of ACME error types
For more information, refer to RFC 8555 § 6.7
Variants§
AccountDoesNotExist
AlreadyRevoked
BadCertificateSigningRequest
BadNonce
BadPublicKey
BadRevocationReason
BadSignatureAlgorithm
CertificationAuthorityAuthorization
Compound
Connection
Dns
ExternalAccountRequired
IncorrectResponse
InvalidContact
Malformed
OrderNotReady
RateLimited
RejectedIdentifier
ServerInternal
Tls
UnsupportedContact
UnsupportedIdentifier
UserActionRequired
Other(String)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ErrorType
impl RefUnwindSafe for ErrorType
impl Send for ErrorType
impl Sync for ErrorType
impl Unpin for ErrorType
impl UnwindSafe for ErrorType
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