pub enum FbxProperty {
Bool(bool),
I16(i16),
I32(i32),
I64(i64),
F32(f32),
F64(f64),
String(String),
Raw(Vec<u8>),
I32Array(Vec<i32>),
F64Array(Vec<f64>),
F32Array(Vec<f32>),
}Expand description
A single FBX property value.
Variants§
Bool(bool)
Boolean (C).
I16(i16)
16-bit signed integer (Y).
I32(i32)
32-bit signed integer (I).
I64(i64)
64-bit signed integer (L).
F32(f32)
32-bit float (F).
F64(f64)
64-bit float (D).
String(String)
UTF-8 string (S).
Raw(Vec<u8>)
Raw byte blob (R).
I32Array(Vec<i32>)
Array of i32 (i).
F64Array(Vec<f64>)
Array of f64 (d).
F32Array(Vec<f32>)
Array of f32 (f).
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 · 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more