Enum lockchain_core::errors::Error[][src]

pub enum Error {
    Unknown,
    Vault(VaultError),
    Auth(AuthError),
    Crypto(CryptoError),
    Data(DataError),
    // some variants omitted
}

Variants

A common "unknown" type for errors that can't be associated with a type or simply need to be stubbed until more information is available.

A basic vault operation error

Errors occuring during authentication

Cryptographic errors

Data integrity or retrieval errors

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter. Read more

impl StdError for Error
[src]

This method is soft-deprecated. Read more

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

impl Display for Error
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Error

impl Sync for Error