pub enum RustyX509CheckError {
DerError(Error),
PemError(Error),
LockPoisonError,
CannotDetermineCurrentTime,
CertValError(Error),
CannotDetermineVerificationStatus,
MissingSki,
ImplementationError,
}Variants§
DerError(Error)
Failed mapping a DER certificate
PemError(Error)
PEM de/serialization error
LockPoisonError
Poisoned lock error
CannotDetermineCurrentTime
Error for when the current UNIX epoch time cannot be determined.
CertValError(Error)
Certificate / revocation validation error
CannotDetermineVerificationStatus
Error when we have no idea what the cert status is
MissingSki
Required ‘Subject Key Identifier’ extension is missing
ImplementationError
Implementation error
Trait Implementations§
Source§impl Debug for RustyX509CheckError
impl Debug for RustyX509CheckError
Source§impl Display for RustyX509CheckError
impl Display for RustyX509CheckError
Source§impl Error for RustyX509CheckError
impl Error for RustyX509CheckError
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 RustyX509CheckError
impl From<Error> for RustyX509CheckError
Source§impl From<Error> for RustyX509CheckError
impl From<Error> for RustyX509CheckError
Source§impl From<Error> for RustyX509CheckError
impl From<Error> for RustyX509CheckError
Source§impl From<RustyX509CheckError> for RustyAcmeError
impl From<RustyX509CheckError> for RustyAcmeError
Source§fn from(source: RustyX509CheckError) -> Self
fn from(source: RustyX509CheckError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RustyX509CheckError
impl RefUnwindSafe for RustyX509CheckError
impl Send for RustyX509CheckError
impl Sync for RustyX509CheckError
impl Unpin for RustyX509CheckError
impl UnwindSafe for RustyX509CheckError
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