1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-06-15 00:04:58 +02:00

Merge pull request #771 from tlyu/iterators5-trait-tweak

fix(iterators5): derive Clone, Copy
This commit is contained in:
marisa
2021-06-24 14:17:05 +02:00
committed by GitHub
2 changed files with 5 additions and 2 deletions

View File

@ -15,7 +15,7 @@
use std::collections::HashMap;
#[derive(PartialEq, Eq)]
#[derive(Clone, Copy, PartialEq, Eq)]
enum Progress {
None,
Some,