Enum spaceapi_server::SpaceapiServerError[]

pub enum SpaceapiServerError {
    Redis(RedisError),
    R2d2(InitializationError),
    IoError(Error),
    Message(Cow<'static, str>),
}

Variants

Trait Implementations

impl Debug for SpaceapiServerError
[src]

Formats the value using the given formatter. Read more

impl From<RedisError> for SpaceapiServerError

Performs the conversion.

impl From<InitializationError> for SpaceapiServerError

Performs the conversion.

impl From<Error> for SpaceapiServerError

Performs the conversion.

impl From<Cow<'static, str>> for SpaceapiServerError

Performs the conversion.

impl Display for SpaceapiServerError

Formats the value using the given formatter. Read more

impl Error for SpaceapiServerError

This method is soft-deprecated. Read more

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

impl From<String> for SpaceapiServerError

Performs the conversion.

impl From<&'static str> for SpaceapiServerError

Performs the conversion.

Auto Trait Implementations