pub enum FbxScaleDomainStatus {
Absent,
Normalized,
Baked,
Derived,
Rebuilt,
Unsupported,
Unverifiable,
}Expand description
How one Appendix D.4 domain reaches the normalized FBX document.
These values describe semantic ingestion only. None claims raw FBX byte, object-property, curve-key, or payload-span preservation.
Variants§
Absent
The source inspection proved that the domain is absent.
Normalized
ufbx normalized the source representation before it reached the core model.
Baked
ufbx evaluated source animation into resampled linear TRS tracks.
Derived
The value is derived from another normalized domain.
Rebuilt
The loader rebuilt the domain into a different normalized representation.
Unsupported
The source domain is present but not completely represented.
Unverifiable
ufbx exposes no raw-span relationship with which to prove this domain.
Trait Implementations§
Source§impl Clone for FbxScaleDomainStatus
impl Clone for FbxScaleDomainStatus
Source§fn clone(&self) -> FbxScaleDomainStatus
fn clone(&self) -> FbxScaleDomainStatus
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 FbxScaleDomainStatus
Source§impl Debug for FbxScaleDomainStatus
impl Debug for FbxScaleDomainStatus
impl Eq for FbxScaleDomainStatus
Source§impl PartialEq for FbxScaleDomainStatus
impl PartialEq for FbxScaleDomainStatus
Source§impl Serialize for FbxScaleDomainStatus
impl Serialize for FbxScaleDomainStatus
impl StructuralPartialEq for FbxScaleDomainStatus
Auto Trait Implementations§
impl Freeze for FbxScaleDomainStatus
impl RefUnwindSafe for FbxScaleDomainStatus
impl Send for FbxScaleDomainStatus
impl Sync for FbxScaleDomainStatus
impl Unpin for FbxScaleDomainStatus
impl UnsafeUnpin for FbxScaleDomainStatus
impl UnwindSafe for FbxScaleDomainStatus
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