Enum goji::Error[][src]

pub enum Error {
    Http(HttpError),
    IO(IoError),
    Serde(SerdeError),
    Fault {
        code: StatusCode,
        errors: Errors,
    },
    Unauthorized,
}

an enumeration over potential errors that may happen when sending a request to jira

Variants

error associated with http request

error associated IO

error associated with parsing or serializing

client request errors

Fields of Fault

invalid credentials

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter. Read more

impl From<SerdeError> for Error
[src]

Performs the conversion.

impl From<HttpError> for Error
[src]

Performs the conversion.

impl From<IoError> for Error
[src]

Performs the conversion.

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations

impl Send for Error

impl Sync for Error