pub enum FbxByteOrder {
Little,
Big,
}Available on crate feature
fbx-reader only.Expand description
Byte order of an FBX file, chosen by the header’s endian marker.
The canonical Autodesk profile is little-endian (marker 0). A non-zero
marker selects big-endian, matching how ufbx interprets the field.
Variants§
Implementations§
Source§impl FbxByteOrder
impl FbxByteOrder
Trait Implementations§
Source§impl Clone for FbxByteOrder
impl Clone for FbxByteOrder
Source§fn clone(&self) -> FbxByteOrder
fn clone(&self) -> FbxByteOrder
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 FbxByteOrder
Source§impl Debug for FbxByteOrder
impl Debug for FbxByteOrder
impl Eq for FbxByteOrder
Source§impl Hash for FbxByteOrder
impl Hash for FbxByteOrder
Source§impl PartialEq for FbxByteOrder
impl PartialEq for FbxByteOrder
impl StructuralPartialEq for FbxByteOrder
Auto Trait Implementations§
impl Freeze for FbxByteOrder
impl RefUnwindSafe for FbxByteOrder
impl Send for FbxByteOrder
impl Sync for FbxByteOrder
impl Unpin for FbxByteOrder
impl UnsafeUnpin for FbxByteOrder
impl UnwindSafe for FbxByteOrder
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