pub enum AssetFormat {
Auto,
Gltf,
Fbx,
Blend,
Usd,
Archive,
}Expand description
Downloadable 3D bundle format.
Variants§
Auto
Select the provider’s preferred archive format.
Gltf
glTF scene plus binary and texture dependencies.
Fbx
Autodesk FBX plus texture dependencies.
Blend
Blender scene plus texture dependencies.
Usd
Universal Scene Description plus texture dependencies.
Archive
Provider ZIP containing one or more documented scene formats.
Trait Implementations§
Source§impl Clone for AssetFormat
impl Clone for AssetFormat
Source§fn clone(&self) -> AssetFormat
fn clone(&self) -> AssetFormat
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 AssetFormat
Source§impl Debug for AssetFormat
impl Debug for AssetFormat
Source§impl<'de> Deserialize<'de> for AssetFormat
impl<'de> Deserialize<'de> for AssetFormat
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for AssetFormat
impl Display for AssetFormat
impl Eq for AssetFormat
Source§impl FromStr for AssetFormat
impl FromStr for AssetFormat
Source§impl PartialEq for AssetFormat
impl PartialEq for AssetFormat
Source§impl Serialize for AssetFormat
impl Serialize for AssetFormat
impl StructuralPartialEq for AssetFormat
Auto Trait Implementations§
impl Freeze for AssetFormat
impl RefUnwindSafe for AssetFormat
impl Send for AssetFormat
impl Sync for AssetFormat
impl Unpin for AssetFormat
impl UnsafeUnpin for AssetFormat
impl UnwindSafe for AssetFormat
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