1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
use validation::{Error, Validate};
use {buffer, extensions, Extras, Index, Root, Path};
pub const VALID_MIME_TYPES: &'static [&'static str] = &[
"image/jpeg",
"image/png",
];
#[derive(Clone, Debug, Deserialize, Serialize, Validate)]
pub struct Image {
#[serde(rename = "bufferView")]
pub buffer_view: Option<Index<buffer::View>>,
#[serde(rename = "mimeType")]
pub mime_type: Option<MimeType>,
#[cfg(feature = "names")]
pub name: Option<String>,
pub uri: Option<String>,
#[serde(default)]
pub extensions: extensions::image::Image,
#[serde(default)]
pub extras: Extras,
}
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct MimeType(pub String);
impl Validate for MimeType {
fn validate_completely<P, R>(&self, _: &Root, path: P, report: &mut R)
where P: Fn() -> Path, R: FnMut(&Fn() -> Path, Error)
{
if !VALID_MIME_TYPES.contains(&self.0.as_str()) {
report(&path, Error::Invalid);
}
}
}