linode-rs 0.1.3

A pure Rust Linode API binding.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use serde::Deserialize;

#[derive(Deserialize, Debug)]
pub struct LinodeApiError {
    pub errors: Vec<LinodeApiErrorItem>,
}

#[derive(Deserialize, Debug)]
pub struct LinodeApiErrorItem {
    pub field: String,
    pub reason: String,
}