pub enum EngineFactValueV1 {
AcceptedFormats(Vec<SourceFormatV1>),
AnimationAddressability(EngineAnimationAddressabilityV1),
CoordinateBasis(EngineCoordinateBasisV1),
LinearUnit(EngineLinearUnitV1),
ConversionControl(EngineConversionControlV1),
Boolean(bool),
ImportHandling(EngineImportHandlingV1),
TargetAddressability(EngineTargetAddressabilityV1),
RootMotionAddressability(EngineRootMotionAddressabilityV1),
}Expand description
Typed value of one known immutable profile fact.
Variants§
AcceptedFormats(Vec<SourceFormatV1>)
Exact accepted input formats.
AnimationAddressability(EngineAnimationAddressabilityV1)
Animation-asset addressability.
CoordinateBasis(EngineCoordinateBasisV1)
Target coordinate basis.
LinearUnit(EngineLinearUnitV1)
Target linear unit.
ConversionControl(EngineConversionControlV1)
Source-to-target conversion control.
Boolean(bool)
Boolean predicate.
ImportHandling(EngineImportHandlingV1)
Import handling of a domain.
TargetAddressability(EngineTargetAddressabilityV1)
Animation-target addressability.
RootMotionAddressability(EngineRootMotionAddressabilityV1)
Root-motion addressability.
Trait Implementations§
Source§impl Clone for EngineFactValueV1
impl Clone for EngineFactValueV1
Source§fn clone(&self) -> EngineFactValueV1
fn clone(&self) -> EngineFactValueV1
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 moreSource§impl Debug for EngineFactValueV1
impl Debug for EngineFactValueV1
Source§impl<'de> Deserialize<'de> for EngineFactValueV1
impl<'de> Deserialize<'de> for EngineFactValueV1
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for EngineFactValueV1
Source§impl Ord for EngineFactValueV1
impl Ord for EngineFactValueV1
Source§fn cmp(&self, other: &EngineFactValueV1) -> Ordering
fn cmp(&self, other: &EngineFactValueV1) -> 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 PartialEq for EngineFactValueV1
impl PartialEq for EngineFactValueV1
Source§impl PartialOrd for EngineFactValueV1
impl PartialOrd for EngineFactValueV1
Source§impl Serialize for EngineFactValueV1
impl Serialize for EngineFactValueV1
impl StructuralPartialEq for EngineFactValueV1
Auto Trait Implementations§
impl Freeze for EngineFactValueV1
impl RefUnwindSafe for EngineFactValueV1
impl Send for EngineFactValueV1
impl Sync for EngineFactValueV1
impl Unpin for EngineFactValueV1
impl UnsafeUnpin for EngineFactValueV1
impl UnwindSafe for EngineFactValueV1
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