Module geeny_api::errors [] [src]

Geeny API Error Types

These error types are generated by Error Chain. These types can be combined with other crates using error_chain in the following way:

#[macro_use]
extern crate error_chain;
extern crate geeny_api;

mod your_error {
    use geeny_api::errors;

    error_chain!{
        links {
            GeenyApi(errors::Error, errors::ErrorKind);
        }
    }
}

fn main() {}

Structs

Error

The Error type.

Enums

ErrorKind

The kind of an error.

Traits

ResultExt

Additional methods for Result, for easy interaction with this crate.

Type Definitions

Result

Convenient wrapper around std::Result.