Enum gltf::buffer::Source [−][src]
pub enum Source<'a> {
Bin,
Uri(&'a str),
}
Expand description
Describes a buffer data source.
Variants
Bin
Buffer data is contained in the BIN
section of binary glTF.
Uri(&'a str)
Tuple Fields
0: &'a str
Buffer data is contained in an external data source.
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for Source<'a>
impl<'a> UnwindSafe for Source<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more