Enum emerald_rs::keystore::SerializeError [] [src]

pub enum SerializeError {
    UnsupportedVersion(u8),
    IO(Error),
    InvalidDecoding(DecoderError),
    InvalidEncoding(EncoderError),
    NotFound,
    InvalidCrypto(String),
}

Keystore file serialize errors

Variants

An unsupported version

IO errors

Invalid Keyfile decoding

Invalid Keyfile encoding

KeyFile wasn't found

Keyfile crypto section parsing

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Error> for Error
[src]

[src]

Performs the conversion.

impl From<Error> for Error
[src]

[src]

Performs the conversion.

impl From<EncoderError> for Error
[src]

[src]

Performs the conversion.

impl From<DecoderError> for Error
[src]

[src]

Performs the conversion.

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

impl From<SerializeError> for KeystoreError
[src]

[src]

Performs the conversion.

Auto Trait Implementations