5 lines
82 B
Rust
5 lines
82 B
Rust
|
pub trait MyIter {
|
||
|
type Item;
|
||
|
fn next(&mut self) -> Option<Self::Item>;
|
||
|
}
|