mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-22 05:52:23 -05:00
fix(iterators5): derive Clone, Copy
To allow more flexibility in solutions, derive `Clone` and `Copy` for `Progress`.
This commit is contained in:
parent
a2f0401c4c
commit
91fc9e3118
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@
|
|||
|
||||
use std::collections::HashMap;
|
||||
|
||||
#[derive(PartialEq, Eq)]
|
||||
#[derive(Clone, Copy, PartialEq, Eq)]
|
||||
enum Progress {
|
||||
None,
|
||||
Some,
|
||||
|
|
Loading…
Reference in a new issue