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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
//! Model MIME types
//!
//! This module contains MIME types for 3D model data.
/// `model/3mf`
///
/// Common file extensions: `.3mf`
pub const _3MF: &str = "model/3mf";
/// `model/e57`
pub const E57: &str = "model/e57";
/// `model/gltf+json`
///
/// Common file extensions: `.gltf`
pub const GLTF_PLUS_JSON: &str = "model/gltf+json";
/// `model/gltf-binary`
///
/// Common file extensions: `.glb`
pub const GLTF_BINARY: &str = "model/gltf-binary";
/// `model/iges`
///
/// Common file extensions: `.igs`, `.iges`
pub const IGES: &str = "model/iges";
/// `model/jt`
///
/// Common file extensions: `.jt`
pub const JT: &str = "model/jt";
/// `model/mesh`
///
/// Common file extensions: `.msh`, `.mesh`, `.silo`
pub const MESH: &str = "model/mesh";
/// `model/mtl`
///
/// Common file extensions: `.mtl`
pub const MTL: &str = "model/mtl";
/// `model/obj`
///
/// Common file extensions: `.obj`
pub const OBJ: &str = "model/obj";
/// `model/prc`
///
/// Common file extensions: `.prc`
pub const PRC: &str = "model/prc";
/// `model/step`
///
/// Common file extensions: `.step`, `.stp`, `.stpnc`, `.p21`, `.210`
pub const STEP: &str = "model/step";
/// `model/step+xml`
///
/// Common file extensions: `.stpx`
pub const STEP_PLUS_XML: &str = "model/step+xml";
/// `model/step+zip`
///
/// Common file extensions: `.stpz`
pub const STEP_PLUS_ZIP: &str = "model/step+zip";
/// `model/step-xml+zip`
///
/// Common file extensions: `.stpxz`
pub const STEP_XML_PLUS_ZIP: &str = "model/step-xml+zip";
/// `model/stl`
///
/// Common file extensions: `.stl`
pub const STL: &str = "model/stl";
/// `model/u3d`
///
/// Common file extensions: `.u3d`
pub const U3D: &str = "model/u3d";
/// `model/vnd.bary`
///
/// Common file extensions: `.bary`
pub const VND_BARY: &str = "model/vnd.bary";
/// `model/vnd.cld`
///
/// Common file extensions: `.cld`
pub const VND_CLD: &str = "model/vnd.cld";
/// `model/vnd.collada+xml`
///
/// Common file extensions: `.dae`
pub const VND_COLLADA_PLUS_XML: &str = "model/vnd.collada+xml";
/// `model/vnd.dwf`
///
/// Common file extensions: `.dwf`
pub const VND_DWF: &str = "model/vnd.dwf";
/// `model/vnd.flatland.3dml`
pub const VND_FLATLAND_3DML: &str = "model/vnd.flatland.3dml";
/// `model/vnd.gdl`
///
/// Common file extensions: `.gdl`
pub const VND_GDL: &str = "model/vnd.gdl";
/// `model/vnd.gs-gdl`
pub const VND_GS_GDL: &str = "model/vnd.gs-gdl";
/// `model/vnd.gs.gdl`
pub const VND_GS_GDL_2: &str = "model/vnd.gs.gdl";
/// `model/vnd.gtw`
///
/// Common file extensions: `.gtw`
pub const VND_GTW: &str = "model/vnd.gtw";
/// `model/vnd.moml+xml`
pub const VND_MOML_PLUS_XML: &str = "model/vnd.moml+xml";
/// `model/vnd.mts`
///
/// Common file extensions: `.mts`
pub const VND_MTS: &str = "model/vnd.mts";
/// `model/vnd.opengex`
///
/// Common file extensions: `.ogex`
pub const VND_OPENGEX: &str = "model/vnd.opengex";
/// `model/vnd.parasolid.transmit.binary`
///
/// Common file extensions: `.x_b`
pub const VND_PARASOLID_TRANSMIT_BINARY: &str = "model/vnd.parasolid.transmit.binary";
/// `model/vnd.parasolid.transmit.text`
///
/// Common file extensions: `.x_t`
pub const VND_PARASOLID_TRANSMIT_TEXT: &str = "model/vnd.parasolid.transmit.text";
/// `model/vnd.pytha.pyox`
///
/// Common file extensions: `.pyo`, `.pyox`
pub const VND_PYTHA_PYOX: &str = "model/vnd.pytha.pyox";
/// `model/vnd.rosette.annotated-data-model`
pub const VND_ROSETTE_ANNOTATED_DATA_MODEL: &str = "model/vnd.rosette.annotated-data-model";
/// `model/vnd.sap.vds`
///
/// Common file extensions: `.vds`
pub const VND_SAP_VDS: &str = "model/vnd.sap.vds";
/// `model/vnd.usda`
///
/// Common file extensions: `.usda`
pub const VND_USDA: &str = "model/vnd.usda";
/// `model/vnd.usdz+zip`
///
/// Common file extensions: `.usdz`
pub const VND_USDZ_PLUS_ZIP: &str = "model/vnd.usdz+zip";
/// `model/vnd.valve.source.compiled-map`
///
/// Common file extensions: `.bsp`
pub const VND_VALVE_SOURCE_COMPILED_MAP: &str = "model/vnd.valve.source.compiled-map";
/// `model/vnd.vtu`
///
/// Common file extensions: `.vtu`
pub const VND_VTU: &str = "model/vnd.vtu";
/// `model/vrml`
///
/// Common file extensions: `.wrl`, `.vrml`
pub const VRML: &str = "model/vrml";
/// `model/x3d+binary`
///
/// Common file extensions: `.x3db`, `.x3dbz`
pub const X3D_PLUS_BINARY: &str = "model/x3d+binary";
/// `model/x3d+fastinfoset`
///
/// Common file extensions: `.x3db`
pub const X3D_PLUS_FASTINFOSET: &str = "model/x3d+fastinfoset";
/// `model/x3d+vrml`
///
/// Common file extensions: `.x3dv`, `.x3dvz`
pub const X3D_PLUS_VRML: &str = "model/x3d+vrml";
/// `model/x3d+xml`
///
/// Common file extensions: `.x3d`, `.x3dz`
pub const X3D_PLUS_XML: &str = "model/x3d+xml";
/// `model/x3d-vrml`
///
/// Common file extensions: `.x3dv`
pub const X3D_VRML: &str = "model/x3d-vrml";