pub struct SetTimingParams {
pub animationId: String,
pub duration: f64,
pub delay: f64,
}Expand description
Sets the timing of an animation node.
Fields§
§animationId: StringAnimation id.
duration: f64Duration of the animation.
delay: f64Delay of the animation.
Implementations§
Trait Implementations§
Source§impl CdpCommand for SetTimingParams
impl CdpCommand for SetTimingParams
Source§impl Clone for SetTimingParams
impl Clone for SetTimingParams
Source§fn clone(&self) -> SetTimingParams
fn clone(&self) -> SetTimingParams
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 SetTimingParams
impl Debug for SetTimingParams
Source§impl Default for SetTimingParams
impl Default for SetTimingParams
Source§fn default() -> SetTimingParams
fn default() -> SetTimingParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SetTimingParams
impl<'de> Deserialize<'de> for SetTimingParams
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 SetTimingParams
impl RefUnwindSafe for SetTimingParams
impl Send for SetTimingParams
impl Sync for SetTimingParams
impl Unpin for SetTimingParams
impl UnsafeUnpin for SetTimingParams
impl UnwindSafe for SetTimingParams
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