Trait bitfield_layout::Layout[][src]

pub trait Layout {
    type Layout: Iterator;
    fn layout() -> Self::Layout;
}
Expand description

Associated bits layout

Associated Types

Layout iterator. Typically constant array or slice

Required methods

Return iterator through layout items. Actual layout may be implemented inside this function or be a associated constant of bitfield type

Implementors