trait BoxIter {
    type Item;

    // Required method
    fn last(self) -> Option<Self::Item>;
}

Required Associated Types§

Required Methods§

source

fn last(self) -> Option<Self::Item>

Implementors§

source§

impl<I: Iterator + ?Sized, A: Allocator> BoxIter for Box<I, A>

§

type Item = <I as Iterator>::Item