pub struct SeekAnimationsParams {
pub animations: Vec<String>,
pub currentTime: f64,
}Expand description
Seek a set of animations to a particular time within each animation.
Fields§
§animations: Vec<String>List of animation ids to seek.
currentTime: f64Set the current time of each animation.
Trait Implementations§
Source§impl Clone for SeekAnimationsParams
impl Clone for SeekAnimationsParams
Source§fn clone(&self) -> SeekAnimationsParams
fn clone(&self) -> SeekAnimationsParams
Returns a duplicate 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 SeekAnimationsParams
impl Debug for SeekAnimationsParams
Source§impl Default for SeekAnimationsParams
impl Default for SeekAnimationsParams
Source§fn default() -> SeekAnimationsParams
fn default() -> SeekAnimationsParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SeekAnimationsParams
impl<'de> Deserialize<'de> for SeekAnimationsParams
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 SeekAnimationsParams
impl RefUnwindSafe for SeekAnimationsParams
impl Send for SeekAnimationsParams
impl Sync for SeekAnimationsParams
impl Unpin for SeekAnimationsParams
impl UnsafeUnpin for SeekAnimationsParams
impl UnwindSafe for SeekAnimationsParams
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