Enum sda_server::errors::SdaServerErrorKind []

pub enum SdaServerErrorKind {
    Msg(String),
    Io(Error),
    Sda(SdaError),
}
[]

The kind of an error.

Variants

[]

A convenient variant for String.

Methods

impl SdaServerErrorKind

[]

A string describing the error kind.

Trait Implementations

impl Debug for SdaServerErrorKind

[]

Formats the value using the given formatter.

impl Display for SdaServerErrorKind

[]

Formats the value using the given formatter. Read more

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

[]

Performs the conversion.

impl From<String> for SdaServerErrorKind

[]

Performs the conversion.

impl From<SdaServerError> for SdaServerErrorKind

[]

Performs the conversion.