pub enum GltfContainerFormat {
Gltf,
GlbV2,
GlbV3,
}Available on crate feature
gltf-container only.Expand description
Container used by an input glTF document.
Variants§
Gltf
JSON glTF document.
GlbV2
Binary GLB 2.0 document.
GlbV3
Draft glTF 2.1 binary container (GLB version 3).
Implementations§
Trait Implementations§
Source§impl Clone for GltfContainerFormat
impl Clone for GltfContainerFormat
Source§fn clone(&self) -> GltfContainerFormat
fn clone(&self) -> GltfContainerFormat
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for GltfContainerFormat
Source§impl Debug for GltfContainerFormat
impl Debug for GltfContainerFormat
impl Eq for GltfContainerFormat
Source§impl PartialEq for GltfContainerFormat
impl PartialEq for GltfContainerFormat
impl StructuralPartialEq for GltfContainerFormat
Auto Trait Implementations§
impl Freeze for GltfContainerFormat
impl RefUnwindSafe for GltfContainerFormat
impl Send for GltfContainerFormat
impl Sync for GltfContainerFormat
impl Unpin for GltfContainerFormat
impl UnsafeUnpin for GltfContainerFormat
impl UnwindSafe for GltfContainerFormat
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