Enum gltf::image::Data
[−]
[src]
pub enum Data<'a> {
View {
view: View<'a>,
mime_type: &'a str,
},
Uri {
uri: &'a str,
mime_type: Option<&'a str>,
},
}The data referenced by an Image.
Variants
ViewImage data is contained in a buffer view.
Fields of View
view: View<'a> | The buffer view containing the encoded image data. |
mime_type: &'a str | The image data MIME type. |
UriImage data is contained in an external data source.
Fields of Uri
uri: &'a str | The URI of the external data source. |
mime_type: Option<&'a str> | The image data MIME type, if provided. |