Struct chrome_remote_interface_model::animation::AnimationEffectBuilder[][src]

pub struct AnimationEffectBuilder { /* fields omitted */ }

Implementations

impl AnimationEffectBuilder[src]

pub fn delay(&mut self, v: f64) -> &mut Self[src]

AnimationEffect's delay.

pub fn end_delay(&mut self, v: f64) -> &mut Self[src]

AnimationEffect's end delay.

pub fn iteration_start(&mut self, v: f64) -> &mut Self[src]

AnimationEffect's iteration start.

pub fn iterations(&mut self, v: f64) -> &mut Self[src]

AnimationEffect's iterations.

pub fn duration(&mut self, v: f64) -> &mut Self[src]

AnimationEffect's iteration duration.

pub fn direction(&mut self, v: String) -> &mut Self[src]

AnimationEffect's playback direction.

pub fn fill(&mut self, v: String) -> &mut Self[src]

AnimationEffect's fill mode.

pub fn backend_node_id(&mut self, v: BackendNodeId) -> &mut Self[src]

AnimationEffect's target node.

pub fn keyframes_rule(&mut self, v: KeyframesRule) -> &mut Self[src]

AnimationEffect's keyframes.

pub fn easing(&mut self, v: String) -> &mut Self[src]

AnimationEffect's timing function.

pub fn build(&mut self) -> Result<AnimationEffect, &'static str>[src]

Trait Implementations

impl Clone for AnimationEffectBuilder[src]

impl Debug for AnimationEffectBuilder[src]

impl Default for AnimationEffectBuilder[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> 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.