ambientcg 0.2.2

Rust interface around the ambientCG v2 web API
Documentation
1
2
3
4
5
6
7
8
use std::collections::HashMap;

/// Represents information about a downloadable folder for an ambientCG asset.
#[derive(Debug)]
pub struct DownloadFolder {
    pub title: String,
    pub download_filetype_categories: HashMap<super::DownloadFileType, super::DownloadCategory>
}