scaleway-rs 0.2.4

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 ScalewayApplication {
    pub id: String,
    pub name: String,
    pub description: String,
    pub organization_id: String,
    pub editable: bool,
    pub nb_api_keys: u32,
    pub tags: Option<Vec<String>>,
    #[serde(with = "time::serde::rfc3339::option")]
    pub created_at: Option<time::OffsetDateTime>,
    #[serde(with = "time::serde::rfc3339::option")]
    pub updated_at: Option<time::OffsetDateTime>,
}