pub enum AnimationIterationCount {
Infinite,
Count(f32),
}Expand description
The animation-iteration-count value: either infinite or a
non-negative number of iterations.
Variants§
Trait Implementations§
Source§impl Clone for AnimationIterationCount
impl Clone for AnimationIterationCount
Source§fn clone(&self) -> AnimationIterationCount
fn clone(&self) -> AnimationIterationCount
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AnimationIterationCount
Source§impl Debug for AnimationIterationCount
impl Debug for AnimationIterationCount
Source§impl PartialEq for AnimationIterationCount
impl PartialEq for AnimationIterationCount
Source§fn eq(&self, other: &AnimationIterationCount) -> bool
fn eq(&self, other: &AnimationIterationCount) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AnimationIterationCount
Auto Trait Implementations§
impl Freeze for AnimationIterationCount
impl RefUnwindSafe for AnimationIterationCount
impl Send for AnimationIterationCount
impl Sync for AnimationIterationCount
impl Unpin for AnimationIterationCount
impl UnsafeUnpin for AnimationIterationCount
impl UnwindSafe for AnimationIterationCount
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more