ambientcg 0.2.2

Rust interface around the ambientCG v2 web API
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Represents a file which can be downloaded from ambientCG.
#[derive(Debug)]
pub struct DownloadFile {
    pub full_download_path: String,
    pub download_link: String,
    pub file_name: String,
    pub size: u64,
    pub attribute: Option<String>,
    pub file_type: super::DownloadFileType,
    pub zip_content: Option<Vec<String>>
}