[][src]Enum picky::jose::jwe::JweError

#[non_exhaustive]pub enum JweError {
    Rsa {
        context: String,
    },
    AesGcm,
    Json {
        source: Error,
    },
    Key {
        source: KeyError,
    },
    InvalidEncoding {
        input: String,
    },
    Base64Decoding {
        source: DecodeError,
    },
    InvalidUtf8 {
        source: FromUtf8Error,
        input: Vec<u8>,
    },
    UnsupportedAlgorithm {
        algorithm: String,
    },
    InvalidSize {
        ty: &'static str,
        expected: usize,
        got: usize,
    },
}

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Rsa

RSA error

Fields of Rsa

context: String
AesGcm

AES-GCM error (opaque)

Json

Json error

Fields of Json

source: Error
Key

Key error

Fields of Key

source: KeyError
InvalidEncoding

Invalid token encoding

Fields of InvalidEncoding

input: String
Base64Decoding

Couldn't decode base64

Fields of Base64Decoding

source: DecodeError
InvalidUtf8

Input isn't valid utf8

Fields of InvalidUtf8

source: FromUtf8Errorinput: Vec<u8>
UnsupportedAlgorithm

Unsupported algorithm

Fields of UnsupportedAlgorithm

algorithm: String
InvalidSize

Invalid size

Fields of InvalidSize

ty: &'static strexpected: usizegot: usize

Trait Implementations

impl Debug for JweError[src]

impl Display for JweError[src]

impl Error for JweError[src]

impl From<DecodeError> for JweError[src]

impl From<Error> for JweError[src]

impl From<Error> for JweError[src]

impl From<Error> for JweError[src]

impl From<JweError> for JwtError[src]

impl From<KeyError> for JweError[src]

Auto Trait Implementations

impl !RefUnwindSafe for JweError

impl Send for JweError

impl Sync for JweError

impl Unpin for JweError

impl !UnwindSafe for JweError

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,