scaleway-rs 0.2.0

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

#[derive(Deserialize, Debug)]
pub struct ScalewayProjectsRoot {
    pub projects: Vec<ScalewayProject>,
}

#[derive(Deserialize, Debug)]
pub struct ScalewayProject {
    pub id: String,
    pub name: String,
    pub organization_id: String,
    pub created_at: Option<String>,
    pub updated_at: Option<String>,
    pub description: Option<String>,
}