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

pub struct Animation {
    pub id: String,
    pub name: String,
    pub paused_state: bool,
    pub play_state: String,
    pub playback_rate: f64,
    pub start_time: f64,
    pub current_time: f64,
    pub type: AnimationType,
    pub source: Option<AnimationEffect>,
    pub css_id: Option<String>,
}

Animation instance. Animation

Fields

id: String

Animation’s id.

name: String

Animation’s name.

paused_state: bool

Animation’s internal paused state.

play_state: String

Animation’s play state.

playback_rate: f64

Animation’s playback rate.

start_time: f64

Animation’s start time.

current_time: f64

Animation’s current time.

type: AnimationType

Animation type of Animation.

source: Option<AnimationEffect>

Animation’s source animation node.

css_id: Option<String>

A unique ID for Animation representing the sources that triggered this CSS animation/transition.

Implementations

impl Animation[src]

impl Animation[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for Animation[src]

impl Debug for Animation[src]

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

impl PartialEq<Animation> for Animation[src]

impl Serialize for Animation[src]

impl StructuralPartialEq for Animation[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>,