Enum bip_select::errors::UberErrorKind []

pub enum UberErrorKind {
    Msg(String),
    Discovery(DiscoveryErrorKind),
    // some variants omitted
}

The kind of an error.

Variants

A convenient variant for String.

Methods

impl UberErrorKind

A string describing the error kind.

Trait Implementations

impl Debug for UberErrorKind

Formats the value using the given formatter.

impl Display for UberErrorKind

Formats the value using the given formatter. Read more

impl From<DiscoveryErrorKind> for UberErrorKind

Performs the conversion.

impl<'a> From<&'a str> for UberErrorKind

Performs the conversion.

impl From<String> for UberErrorKind

Performs the conversion.

impl From<UberError> for UberErrorKind

Performs the conversion.