ambientcg 0.2.2

Rust interface around the ambientCG v2 web API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use serde::{Serialize, Deserialize};

#[allow(non_snake_case)]
#[derive(Serialize, Deserialize, Debug)]
pub struct Include {
    statisticsData: bool,
    tagData: bool,
    displayData: bool,
    dimensionsData: bool,
    relationshipData: bool,
    neighbourData: bool,
    variationsData: bool,
    downloadData: bool,
    previewData: bool,
    mapData: bool,
    usdData: bool,
    imageData: bool
}