pub struct AnimationEffect<'a> { /* private fields */ }Expand description
AnimationEffect instance
Implementations§
Source§impl<'a> AnimationEffect<'a>
impl<'a> AnimationEffect<'a>
pub fn builder( delay: f64, endDelay: f64, iterationStart: f64, duration: f64, direction: impl Into<Cow<'a, str>>, fill: impl Into<Cow<'a, str>>, easing: impl Into<Cow<'a, str>>, ) -> AnimationEffectBuilder<'a>
pub fn delay(&self) -> f64
pub fn endDelay(&self) -> f64
pub fn iterationStart(&self) -> f64
pub fn iterations(&self) -> Option<f64>
pub fn duration(&self) -> f64
pub fn direction(&self) -> &str
pub fn fill(&self) -> &str
pub fn backendNodeId(&self) -> Option<&BackendNodeId>
pub fn keyframesRule(&self) -> Option<&KeyframesRule<'a>>
pub fn easing(&self) -> &str
Trait Implementations§
Source§impl<'a> Clone for AnimationEffect<'a>
impl<'a> Clone for AnimationEffect<'a>
Source§fn clone(&self) -> AnimationEffect<'a>
fn clone(&self) -> AnimationEffect<'a>
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<'a> Debug for AnimationEffect<'a>
impl<'a> Debug for AnimationEffect<'a>
Source§impl<'a> Default for AnimationEffect<'a>
impl<'a> Default for AnimationEffect<'a>
Source§fn default() -> AnimationEffect<'a>
fn default() -> AnimationEffect<'a>
Returns the “default value” for a type. Read more
Source§impl<'de, 'a> Deserialize<'de> for AnimationEffect<'a>
impl<'de, 'a> Deserialize<'de> for AnimationEffect<'a>
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<'a> Freeze for AnimationEffect<'a>
impl<'a> RefUnwindSafe for AnimationEffect<'a>
impl<'a> Send for AnimationEffect<'a>
impl<'a> Sync for AnimationEffect<'a>
impl<'a> Unpin for AnimationEffect<'a>
impl<'a> UnsafeUnpin for AnimationEffect<'a>
impl<'a> UnwindSafe for AnimationEffect<'a>
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