以下`Item`のようにトレイト実装で指定する必要のある型。 ```rust pub trait Iterator { type Item; fn next(&mut self) -> Option<Self::Item>; } ```