[][src]Struct chromiumoxide::cdp::browser_protocol::animation::AnimationEffect

pub struct AnimationEffect {
    pub delay: f64,
    pub end_delay: f64,
    pub iteration_start: f64,
    pub iterations: f64,
    pub duration: f64,
    pub direction: String,
    pub fill: String,
    pub backend_node_id: Option<BackendNodeId>,
    pub keyframes_rule: Option<KeyframesRule>,
    pub easing: String,
}

AnimationEffect instance AnimationEffect

Fields

delay: f64

AnimationEffect's delay.

end_delay: f64

AnimationEffect's end delay.

iteration_start: f64

AnimationEffect's iteration start.

iterations: f64

AnimationEffect's iterations.

duration: f64

AnimationEffect's iteration duration.

direction: String

AnimationEffect's playback direction.

fill: String

AnimationEffect's fill mode.

backend_node_id: Option<BackendNodeId>

AnimationEffect's target node.

keyframes_rule: Option<KeyframesRule>

AnimationEffect's keyframes.

easing: String

AnimationEffect's timing function.

Implementations

impl AnimationEffect[src]

impl AnimationEffect[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for AnimationEffect[src]

impl Debug for AnimationEffect[src]

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

impl PartialEq<AnimationEffect> for AnimationEffect[src]

impl Serialize for AnimationEffect[src]

impl StructuralPartialEq 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> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,