Enum async_acme::acme::AcmeError  [−][src]
pub enum AcmeError {
    Io(Error),
    Json(Error),
    HttpRequest(HTTPError),
    MissingHeader(&'static str),
    NoTlsAlpn01Challenge,
    HttpStatus(u16),
    RcgenError(RcgenError),
    Cache(Box<dyn CacheError>),
}Variants
Io(Error)Tuple Fields of Io
0: ErrorJson(Error)Tuple Fields of Json
0: ErrorHttpRequest(HTTPError)Tuple Fields of HttpRequest
0: HTTPErrorMissingHeader(&'static str)Tuple Fields of MissingHeader
0: &'static strHttpStatus(u16)Tuple Fields of HttpStatus
0: u16RcgenError(RcgenError)Tuple Fields of RcgenError
0: RcgenErrorCache(Box<dyn CacheError>)Tuple Fields of Cache
0: Box<dyn CacheError>Implementations
Trait Implementations
Performs the conversion.