mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-07 14:21:47 +08:00
6 lines
85 B
Rust
6 lines
85 B
Rust
|
pub trait Iterator {
|
||
|
type Item;
|
||
|
|
||
|
fn next(&mut self) -> Option<Self::Item>;
|
||
|
}
|