Trait bitfield_layout::IntoBits[][src]

pub trait IntoBits {
    type Bytes: Iterator<Item = u8>;
    fn into_bits(self) -> Bits<Self::Bytes>
Notable traits for Bits<I>
impl<I: Iterator<Item = u8>> Iterator for Bits<I> type Item = bool;
; }
Expand description

Converts value to bit iterator

Associated Types

Required methods

Implementations on Foreign Types

Implementors