Trait ff::BitViewSized[][src]

pub trait BitViewSized: BitView {
    const ELTS: usize;
    const BITS: usize;
}
This is supported on crate feature bits only.
Expand description

Helper for size awareness on Sized storage regions.

Associated Constants

Counts the number of elements T contained in the type.

Counts the number of bits contained in the type.

Implementors