pub enum EngineFactValueV2 {
AcceptedFormats(Vec<SourceFormatV1>),
LinearUnit(EngineLinearUnitV2),
UnitRatio(ReducedRatioV1),
Boolean(bool),
Token(String),
RootMotionAddressability(EngineRootMotionAddressabilityV1),
}Expand description
Closed V2 fact value vocabulary.
Variants§
AcceptedFormats(Vec<SourceFormatV1>)
Exact accepted formats.
LinearUnit(EngineLinearUnitV2)
A unit convention.
UnitRatio(ReducedRatioV1)
Exact target units per source unit.
Boolean(bool)
Boolean fact.
Token(String)
A closed semantic token whose vocabulary is owned by the fact id.
RootMotionAddressability(EngineRootMotionAddressabilityV1)
Root-motion addressability from the historical closed vocabulary.
Trait Implementations§
Source§impl Clone for EngineFactValueV2
impl Clone for EngineFactValueV2
Source§fn clone(&self) -> EngineFactValueV2
fn clone(&self) -> EngineFactValueV2
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 EngineFactValueV2
impl Debug for EngineFactValueV2
Source§impl<'de> Deserialize<'de> for EngineFactValueV2
impl<'de> Deserialize<'de> for EngineFactValueV2
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 EngineFactValueV2
Source§impl Ord for EngineFactValueV2
impl Ord for EngineFactValueV2
Source§fn cmp(&self, other: &EngineFactValueV2) -> Ordering
fn cmp(&self, other: &EngineFactValueV2) -> 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 EngineFactValueV2
impl PartialEq for EngineFactValueV2
Source§impl PartialOrd for EngineFactValueV2
impl PartialOrd for EngineFactValueV2
Source§impl Serialize for EngineFactValueV2
impl Serialize for EngineFactValueV2
impl StructuralPartialEq for EngineFactValueV2
Auto Trait Implementations§
impl Freeze for EngineFactValueV2
impl RefUnwindSafe for EngineFactValueV2
impl Send for EngineFactValueV2
impl Sync for EngineFactValueV2
impl Unpin for EngineFactValueV2
impl UnsafeUnpin for EngineFactValueV2
impl UnwindSafe for EngineFactValueV2
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