pub enum FbxProperty {
}Available on crate feature
fbx-reader only.Expand description
FBX property value.
Variants§
Bool(bool)
Boolean property.
I16(i16)
16-bit signed integer property.
I32(i32)
32-bit signed integer property.
I64(i64)
64-bit signed integer property.
F32(f32)
32-bit floating-point property.
F64(f64)
64-bit floating-point property.
String(String)
UTF-8-ish string property decoded lossily from FBX bytes.
Raw(Vec<u8>)
Raw binary property.
BoolArray(Vec<bool>)
Boolean array property.
I32Array(Vec<i32>)
32-bit signed integer array property.
I64Array(Vec<i64>)
64-bit signed integer array property.
F32Array(Vec<f32>)
32-bit floating-point array property.
F64Array(Vec<f64>)
64-bit floating-point array property.
Trait Implementations§
Source§impl Clone for FbxProperty
impl Clone for FbxProperty
Source§fn clone(&self) -> FbxProperty
fn clone(&self) -> FbxProperty
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 moreAuto Trait Implementations§
impl Freeze for FbxProperty
impl RefUnwindSafe for FbxProperty
impl Send for FbxProperty
impl Sync for FbxProperty
impl Unpin for FbxProperty
impl UnsafeUnpin for FbxProperty
impl UnwindSafe for FbxProperty
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