Enum style::animation::KeyframesIterationState
[−]
[src]
pub enum KeyframesIterationState { Infinite, Finite(f32, f32), }
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
Infinite iterations, so no need to track a state.
Finite(f32, f32)
Current and max iterations.
Trait Implementations
impl Clone for KeyframesIterationState
[src]
fn clone(&self) -> KeyframesIterationState
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more