scaleway-rs 0.2.8

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

#[derive(Deserialize, Debug)]
pub struct ScalewayMarketplaceCategoryRoot {
    pub categories: Vec<ScalewayMarketplaceCategory>,
}

#[derive(Deserialize, Debug)]
pub struct ScalewayMarketplaceCategory {
    pub id: String,
    pub name: String,
    pub description: String,
}