pub enum OpenSSLPathValidatorError {
Error(String),
OpenSslErrorStack(ErrorStack),
DerError(Error),
}
Variants§
Trait Implementations§
Source§impl Debug for OpenSSLPathValidatorError
impl Debug for OpenSSLPathValidatorError
Source§impl Display for OpenSSLPathValidatorError
impl Display for OpenSSLPathValidatorError
Source§impl Error for OpenSSLPathValidatorError
impl Error for OpenSSLPathValidatorError
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()
Source§impl From<Error> for OpenSSLPathValidatorError
impl From<Error> for OpenSSLPathValidatorError
Source§impl From<ErrorStack> for OpenSSLPathValidatorError
impl From<ErrorStack> for OpenSSLPathValidatorError
Source§fn from(e: ErrorStack) -> Self
fn from(e: ErrorStack) -> Self
Converts to this type from the input type.
Source§impl From<OpenSSLPathValidatorError> for X509PathFinderError
impl From<OpenSSLPathValidatorError> for X509PathFinderError
Source§fn from(e: OpenSSLPathValidatorError) -> Self
fn from(e: OpenSSLPathValidatorError) -> Self
Converts to this type from the input type.
impl PathValidatorError for OpenSSLPathValidatorError
Auto Trait Implementations§
impl Freeze for OpenSSLPathValidatorError
impl RefUnwindSafe for OpenSSLPathValidatorError
impl Send for OpenSSLPathValidatorError
impl Sync for OpenSSLPathValidatorError
impl Unpin for OpenSSLPathValidatorError
impl UnwindSafe for OpenSSLPathValidatorError
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