pub struct TlsReloadError {
pub reason: String,
}Expand description
Error returned when ReloadableCertResolver::reload_from_paths fails.
Fields§
§reason: StringTrait Implementations§
Source§impl Clone for TlsReloadError
impl Clone for TlsReloadError
Source§fn clone(&self) -> TlsReloadError
fn clone(&self) -> TlsReloadError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TlsReloadError
impl Debug for TlsReloadError
Source§impl Display for TlsReloadError
impl Display for TlsReloadError
Source§impl Error for TlsReloadError
impl Error for TlsReloadError
1.30.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.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for TlsReloadError
impl RefUnwindSafe for TlsReloadError
impl Send for TlsReloadError
impl Sync for TlsReloadError
impl Unpin for TlsReloadError
impl UnsafeUnpin for TlsReloadError
impl UnwindSafe for TlsReloadError
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