Enum gltf::image::Source [−][src]
pub enum Source<'a> {
View {
view: View<'a>,
mime_type: &'a str,
},
Uri {
uri: &'a str,
mime_type: Option<&'a str>,
},
}Describes an image data source.
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. |
Trait Implementations
impl<'a> Clone for Source<'a>[src]
impl<'a> Clone for Source<'a>fn clone(&self) -> Source<'a>[src]
fn clone(&self) -> Source<'a>Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl<'a> Debug for Source<'a>[src]
impl<'a> Debug for Source<'a>