Enum arx_kw::InvalidLengthError[][src]

pub enum InvalidLengthError {
    _Fixed(usizeusize),
    UpTo(usizeusize),
}

An error denoting that a value was of an invalid length. Typically this will be used as a variant of ArxKwError rather than on its own.

Variants

_Fixed(usizeusize)

Invalid length in a context expecting a fixed length.

UpTo(usizeusize)

Invalid length in a context which accepts a variable length (e.g. plaintext and ciphertext inputs)

Trait Implementations

impl Debug for InvalidLengthError[src]

impl Display for InvalidLengthError[src]

impl Error for InvalidLengthError[src]

impl From<InvalidLengthError> for ArxKwError[src]

Auto Trait Implementations

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> 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.