pub enum SourceLoaderDispositionV1 {
Preserved,
Normalized,
Baked,
Discarded,
Unsupported,
Unknown,
NotApplicable,
}Expand description
What the AnimSmith loader did with an observed source declaration.
Variants§
Preserved
Retained without semantic reinterpretation.
Normalized
Converted into AnimSmith’s normalized coordinate/model domain.
Baked
Evaluated into baked samples.
Discarded
Deliberately omitted from the normalized document.
Unsupported
Recognized but unsupported by the AnimSmith loader.
Unknown
The loader cannot classify its treatment.
NotApplicable
The source domain does not apply to this format.
Trait Implementations§
Source§impl Clone for SourceLoaderDispositionV1
impl Clone for SourceLoaderDispositionV1
Source§fn clone(&self) -> SourceLoaderDispositionV1
fn clone(&self) -> SourceLoaderDispositionV1
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 SourceLoaderDispositionV1
Source§impl Debug for SourceLoaderDispositionV1
impl Debug for SourceLoaderDispositionV1
impl Eq for SourceLoaderDispositionV1
Source§impl From<SourceLoaderDispositionV1> for RawSourceDispositionV1
impl From<SourceLoaderDispositionV1> for RawSourceDispositionV1
Source§fn from(value: SourceLoaderDispositionV1) -> Self
fn from(value: SourceLoaderDispositionV1) -> Self
Converts to this type from the input type.
Source§impl Ord for SourceLoaderDispositionV1
impl Ord for SourceLoaderDispositionV1
Source§fn cmp(&self, other: &SourceLoaderDispositionV1) -> Ordering
fn cmp(&self, other: &SourceLoaderDispositionV1) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for SourceLoaderDispositionV1
impl PartialOrd for SourceLoaderDispositionV1
impl StructuralPartialEq for SourceLoaderDispositionV1
Auto Trait Implementations§
impl Freeze for SourceLoaderDispositionV1
impl RefUnwindSafe for SourceLoaderDispositionV1
impl Send for SourceLoaderDispositionV1
impl Sync for SourceLoaderDispositionV1
impl Unpin for SourceLoaderDispositionV1
impl UnsafeUnpin for SourceLoaderDispositionV1
impl UnwindSafe for SourceLoaderDispositionV1
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