Enum diwata_server::ServiceError[][src]

pub enum ServiceError {
    GenericError(String),
    PoolResourceError,
    CacheLockError,
    IntelError(IntelError),
    DbError(DbError),
    NoDbUrlSpecified,
    NotFound,
}

Variants

Trait Implementations

impl Debug for ServiceError
[src]

Formats the value using the given formatter. Read more

impl From<DbError> for ServiceError
[src]

Performs the conversion.

impl From<IntelError> for ServiceError
[src]

Performs the conversion.

Auto Trait Implementations