Enum style::animation::KeyframesIterationState [] [src]

pub enum KeyframesIterationState {
    Infinite,
    Finite(f32f32),
}

This structure represents a keyframes animation current iteration state.

If the iteration count is infinite, there's no other state, otherwise we have to keep track the current iteration and the max iteration count.

Variants

Infinite iterations, so no need to track a state.

Current and max iterations.

Trait Implementations

impl Clone for KeyframesIterationState
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for KeyframesIterationState
[src]

[src]

Formats the value using the given formatter. Read more