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