pub enum TlsLayoutError {
Io(Error),
Invalid(&'static str),
Missing(&'static str),
}Variants§
Trait Implementations§
Source§impl Debug for TlsLayoutError
impl Debug for TlsLayoutError
Source§impl Display for TlsLayoutError
impl Display for TlsLayoutError
Source§impl Error for TlsLayoutError
impl Error for TlsLayoutError
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 !RefUnwindSafe for TlsLayoutError
impl !UnwindSafe for TlsLayoutError
impl Freeze for TlsLayoutError
impl Send for TlsLayoutError
impl Sync for TlsLayoutError
impl Unpin for TlsLayoutError
impl UnsafeUnpin for TlsLayoutError
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