pub trait BitIterBE {
    type Iter: Iterator<Item = bool>;
    fn bit_iter_be(&self) -> Self::Iter;
}

Associated Types

Required methods

Implementors