pub trait ExpBits { type Iter: Iterator<Item = bool>; // Required method fn bits(self) -> Self::Iter; }