pub enum StartTlsError {
Tls(Error),
KtlsError(Error),
}
Available on crate feature
starttls
only.Expand description
StartTLS ServerConnector Error
Variants§
Tls(Error)
TLS error
KtlsError(Error)
Available on crate feature
tls-rust-ktls
only.Error while setting up kernel TLS
Trait Implementations§
source§impl Debug for StartTlsError
impl Debug for StartTlsError
source§impl Display for StartTlsError
impl Display for StartTlsError
source§impl Error for StartTlsError
impl Error for StartTlsError
1.81.0 · 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.81.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 StartTlsError
impl From<Error> for StartTlsError
impl ServerConnectorError for StartTlsError
Auto Trait Implementations§
impl Freeze for StartTlsError
impl !RefUnwindSafe for StartTlsError
impl Send for StartTlsError
impl Sync for StartTlsError
impl Unpin for StartTlsError
impl !UnwindSafe for StartTlsError
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
source§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString
. Read more