vultr 0.4.3

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

#[derive(Deserialize, Debug)]
pub struct VultrMeta {
    pub total: u32,
    pub links: VultrMetaLinks,
}

#[derive(Deserialize, Debug)]
pub struct VultrMetaLinks {
    pub next: String,
    pub prev: String,
}