Struct chrome_remote_interface_model::animation::AnimationEffect[][src]

pub struct AnimationEffect { /* fields omitted */ }

AnimationEffect instance

Implementations

impl AnimationEffect[src]

pub fn builder() -> AnimationEffectBuilder[src]

pub fn delay(&self) -> f64[src]

AnimationEffect's delay.

pub fn end_delay(&self) -> f64[src]

AnimationEffect's end delay.

pub fn iteration_start(&self) -> f64[src]

AnimationEffect's iteration start.

pub fn iterations(&self) -> f64[src]

AnimationEffect's iterations.

pub fn duration(&self) -> f64[src]

AnimationEffect's iteration duration.

pub fn direction(&self) -> &str[src]

AnimationEffect's playback direction.

pub fn fill(&self) -> &str[src]

AnimationEffect's fill mode.

pub fn backend_node_id(&self) -> Option<&BackendNodeId>[src]

AnimationEffect's target node.

pub fn keyframes_rule(&self) -> Option<&KeyframesRule>[src]

AnimationEffect's keyframes.

pub fn easing(&self) -> &str[src]

AnimationEffect's timing function.

Trait Implementations

impl Clone for AnimationEffect[src]

impl Debug for AnimationEffect[src]

impl<'de> Deserialize<'de> for AnimationEffect[src]

impl Serialize for AnimationEffect[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.