pub enum RigAnimationCondition {
Show 15 variants
Not(Box<Self>),
And(Vec<Self>),
Or(Vec<Self>),
Bool(bool),
IntegerEquals(i32),
IntegerGreater(i32),
IntegerLess(i32),
IntegerRange(i32, i32),
ScalarNearlyEquals(Scalar, Scalar),
ScalarGreater(Scalar),
ScalarLess(Scalar),
ScalarRange(Scalar, Scalar),
StringEquals(String),
StringContains(String),
StringTagged {
tag: String,
separator: String,
},
}Variants§
Not(Box<Self>)
And(Vec<Self>)
Or(Vec<Self>)
Bool(bool)
IntegerEquals(i32)
IntegerGreater(i32)
IntegerLess(i32)
IntegerRange(i32, i32)
(from inclusive, to inclusive)
ScalarNearlyEquals(Scalar, Scalar)
(value, threshold)
ScalarGreater(Scalar)
ScalarLess(Scalar)
ScalarRange(Scalar, Scalar)
(from inclusive, to inclusive)
StringEquals(String)
StringContains(String)
StringTagged
Implementations§
Trait Implementations§
source§impl Clone for RigAnimationCondition
impl Clone for RigAnimationCondition
source§fn clone(&self) -> RigAnimationCondition
fn clone(&self) -> RigAnimationCondition
Returns a copy of the value. Read more
1.0.0 · 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 RigAnimationCondition
impl Debug for RigAnimationCondition
source§impl<'de> Deserialize<'de> for RigAnimationCondition
impl<'de> Deserialize<'de> for RigAnimationCondition
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
Auto Trait Implementations§
impl RefUnwindSafe for RigAnimationCondition
impl Send for RigAnimationCondition
impl Sync for RigAnimationCondition
impl Unpin for RigAnimationCondition
impl UnwindSafe for RigAnimationCondition
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