pub enum LoopCount {
Once,
Times(u32),
Infinite,
}Expand description
How many times to loop the timeline.
Variants§
Once
Play once (no looping).
Times(u32)
Repeat a fixed number of times (total plays = times + 1).
Infinite
Loop forever.
Trait Implementations§
impl Copy for LoopCount
impl Eq for LoopCount
impl StructuralPartialEq for LoopCount
Auto Trait Implementations§
impl Freeze for LoopCount
impl RefUnwindSafe for LoopCount
impl Send for LoopCount
impl Sync for LoopCount
impl Unpin for LoopCount
impl UnwindSafe for LoopCount
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