pub struct AnimatedValueInfo {
pub is_animated: bool,
pub precision: u32,
pub time_sample_count: usize,
pub minimum_time: f64,
pub maximum_time: f64,
pub interpolation: u32,
pub key_times: Vec<f64>,
pub element_count: Option<usize>,
}Fields§
§is_animated: bool§precision: u32§time_sample_count: usize§minimum_time: f64§maximum_time: f64§interpolation: u32§key_times: Vec<f64>§element_count: Option<usize>Implementations§
Source§impl AnimatedValueInfo
impl AnimatedValueInfo
pub fn precision_enum(&self) -> Option<DataPrecision>
pub fn interpolation_enum(&self) -> Option<AnimatedValueInterpolation>
Trait Implementations§
Source§impl Clone for AnimatedValueInfo
impl Clone for AnimatedValueInfo
Source§fn clone(&self) -> AnimatedValueInfo
fn clone(&self) -> AnimatedValueInfo
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 AnimatedValueInfo
impl Debug for AnimatedValueInfo
Source§impl<'de> Deserialize<'de> for AnimatedValueInfo
impl<'de> Deserialize<'de> for AnimatedValueInfo
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 Freeze for AnimatedValueInfo
impl RefUnwindSafe for AnimatedValueInfo
impl Send for AnimatedValueInfo
impl Sync for AnimatedValueInfo
impl Unpin for AnimatedValueInfo
impl UnsafeUnpin for AnimatedValueInfo
impl UnwindSafe for AnimatedValueInfo
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