doapi 0.1.0-alpha3

A wrapper library for the DigitalOcean API v2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use std::fmt;

// example: Missing action
// {"id":"not_found","message":"The resource you were accessing could not be found."}
#[derive(Deserialize, Debug)]
pub struct DoError {
    id: String,
    message: String
}

impl fmt::Display for DoError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "DigitalOcean Error Response: {}",
                self.message)
    }
}