Enum sshcerts::error::Error [−][src]
A type to represent the different kinds of errors.
Variants
Io(Error)There was an error reading from or writing to an external source
Decode(DecodeError)Data was improperly encoded as base64
Utf8Error(FromUtf8Error)Data was not a valid UTF8 string.
InvalidCertType(u32)A certificate type that doesn’t exist was requested. Should be either 1 or 2
The format of a certificate was incorrect
The stream ended unexpectedly
The provided data was not a certificate
The requested signature or key was incompatible with what was previously specified
The certificate is not signed correctly and invalid
A cryptographic operation failed.
An encrypted private key was supplied and is not supported
UnknownKeyType(String)The key type is unknown
UnknownCurve(String)The curve in an ECC public/private key/signature is unknown
Trait Implementations
impl Debug for Error[src]
impl Display for Error[src]
impl Error for Error[src]
fn source(&self) -> Option<&(dyn Error + 'static)>[src]
pub fn backtrace(&self) -> Option<&Backtrace>[src]
pub fn description(&self) -> &str1.0.0[src]
pub fn cause(&self) -> Option<&dyn Error>1.0.0[src]
impl From<ASN1EncodeErr> for Error[src]
fn from(_e: ASN1EncodeErr) -> Self[src]
impl From<DecodeError> for Error[src]
fn from(error: DecodeError) -> Error[src]
impl From<Error> for Error[src]
impl From<FromUtf8Error> for Error[src]
fn from(error: FromUtf8Error) -> Error[src]
impl From<Unspecified> for Error[src]
fn from(_: Unspecified) -> Error[src]
Auto Trait Implementations
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,