2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::copy_iterator)]
|
2018-07-17 17:22:55 +00:00
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
struct Countdown(u8);
|
|
|
|
|
|
|
|
impl Iterator for Countdown {
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: you are implementing `Iterator` on a `Copy` type
|
|
|
|
//~| NOTE: consider implementing `IntoIterator` instead
|
2018-07-17 17:22:55 +00:00
|
|
|
type Item = u8;
|
|
|
|
|
|
|
|
fn next(&mut self) -> Option<u8> {
|
|
|
|
self.0.checked_sub(1).map(|c| {
|
|
|
|
self.0 = c;
|
|
|
|
c
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let my_iterator = Countdown(5);
|
2021-05-04 06:58:41 +00:00
|
|
|
assert_eq!(my_iterator.take(1).count(), 1);
|
|
|
|
assert_eq!(my_iterator.count(), 5);
|
2018-07-17 17:22:55 +00:00
|
|
|
}
|