pub enum AutoTlsError {
AcmeError(String),
ChallengeError(String),
CertificateError(String),
IoError(Error),
ConfigError(String),
StoreError(String),
SerializationError(Error),
}Expand description
Error type for auto TLS operations
Variants§
AcmeError(String)
ACME protocol error
ChallengeError(String)
Challenge error
CertificateError(String)
Certificate error
IoError(Error)
IO error
ConfigError(String)
Configuration error
StoreError(String)
Store error
SerializationError(Error)
Serialization error
Trait Implementations§
Source§impl Debug for AutoTlsError
impl Debug for AutoTlsError
Source§impl Display for AutoTlsError
impl Display for AutoTlsError
Source§impl Error for AutoTlsError
impl Error for AutoTlsError
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 AutoTlsError
impl From<Error> for AutoTlsError
Auto Trait Implementations§
impl Freeze for AutoTlsError
impl !RefUnwindSafe for AutoTlsError
impl Send for AutoTlsError
impl Sync for AutoTlsError
impl Unpin for AutoTlsError
impl UnsafeUnpin for AutoTlsError
impl !UnwindSafe for AutoTlsError
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