pub enum Error<B: Backend> {
    Backend(B::Err),
    Bytes(Error),
    OpenSSL(ErrorStack),
    InvalidKey,
    InvalidIv,
    InvalidBlockSize,
    NotTrustworthy,
    NoPassword,
    PasswordCallback(String),
    WrongPassword(Error),
    NullId,
}
Expand description

Error type used by this module.

Variants§

§

Backend(B::Err)

An error occured in the attached backend.

§

Bytes(Error)

Error while (de-) serializing binary data.

§

OpenSSL(ErrorStack)

An error in the OpenSSL library occured.

§

InvalidKey

The cipher key is invalid/too short.

§

InvalidIv

The cipher iv is invalid/too short.

§

InvalidBlockSize

The size of the block to be encrypted/decrypted is invalid and must be aligned at the block size of the cipher.

§

NotTrustworthy

A cipher-text is not trustworthy.

If an authenticated decryption is performed, and the tag mismatches, this error is raised.

§

NoPassword

No password callback is assigned to the container, thus no password is available.

§

PasswordCallback(String)

The password callback generated an error, which is passed to the variant.

§

WrongPassword(Error)

The password is wrong.

§

NullId

Try to read/write from/to a null-id which is forbidden.

Trait Implementations§

source§

impl<B: Backend> Debug for Error<B>

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<B: Backend> Display for Error<B>

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<B: Backend + 'static> Error for Error<B>

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl<B: Backend> From<Error> for Error<B>

source§

fn from(cause: Error) -> Self

Converts to this type from the input type.
source§

impl<B: Backend> From<ErrorStack> for Error<B>

source§

fn from(cause: ErrorStack) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<B> !RefUnwindSafe for Error<B>

§

impl<B> Send for Error<B>

§

impl<B> Sync for Error<B>

§

impl<B> Unpin for Error<B>where <B as Backend>::Err: Unpin,

§

impl<B> !UnwindSafe for Error<B>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.