pub trait FirstLast: Iterator { // Required method fn first_last(self) -> Option<(Self::Item, Self::Item)>; }