trait BoxIter { type Item; // Required method fn last(self) -> Option<Self::Item>; }
Specialization for sized Is that uses Is implementation of last() instead of the default.
I
last()