Enum style::animation::KeyframesRunningState [] [src]

pub enum KeyframesRunningState {
    Paused(f64),
    Running,
}

This structure represents wether an animation is actually running.

An animation can be running, or paused at a given time.

Variants

This animation is paused. The inner field is the percentage of progress when it was paused, from 0 to 1.

This animation is actually running.

Trait Implementations

impl Clone for KeyframesRunningState
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for KeyframesRunningState
[src]

[src]

Formats the value using the given formatter. Read more