pub trait IntoBitPath {
type Output: Iterator<Item = bool>;
// Required method
fn into_bit_path(self) -> Self::Output;
}pub trait IntoBitPath {
type Output: Iterator<Item = bool>;
// Required method
fn into_bit_path(self) -> Self::Output;
}