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)
Buffer data is contained in an external data source.
Trait Implementations§
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Source<'a>
impl<'a> Send for Source<'a>
impl<'a> Sync for Source<'a>
impl<'a> Unpin for Source<'a>
impl<'a> UnwindSafe for Source<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more