pub struct CompressedAnimationCurve {
pub m_Path: String,
pub m_PostInfinity: i32,
pub m_PreInfinity: i32,
pub m_Slopes: PackedBitVector,
pub m_Times: PackedBitVector,
pub m_Values: PackedBitVector,
}Expand description
CompressedAnimationCurve is a sub class of the Unity engine since version 3.4.0.
Fields§
§m_Path: String§m_PostInfinity: i32§m_PreInfinity: i32§m_Slopes: PackedBitVector§m_Times: PackedBitVector§m_Values: PackedBitVectorTrait Implementations§
Source§impl Debug for CompressedAnimationCurve
impl Debug for CompressedAnimationCurve
Source§impl<'de> Deserialize<'de> for CompressedAnimationCurve
impl<'de> Deserialize<'de> for CompressedAnimationCurve
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CompressedAnimationCurve, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CompressedAnimationCurve, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for CompressedAnimationCurve
impl Serialize for CompressedAnimationCurve
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for CompressedAnimationCurve
impl RefUnwindSafe for CompressedAnimationCurve
impl Send for CompressedAnimationCurve
impl Sync for CompressedAnimationCurve
impl Unpin for CompressedAnimationCurve
impl UnsafeUnpin for CompressedAnimationCurve
impl UnwindSafe for CompressedAnimationCurve
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