Enum emerald_rs::storage::addressbook::error::AddressbookError[][src]

pub enum AddressbookError {
    IO(String),
    InvalidAddress(String),
}

Addressbook Errors

Variants

IO Error

Invalid Address

Trait Implementations

impl From<AddressbookError> for Error
[src]

Performs the conversion.

impl Debug for AddressbookError
[src]

Formats the value using the given formatter. Read more

impl Clone for AddressbookError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for AddressbookError
[src]

Formats the value using the given formatter. Read more

impl Error for AddressbookError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations