pub trait BitStructExt: BitStruct<true> {
    fn exact_from(value: Self::Kind) -> Self;
}
Expand description

An extension trait for bit structs which can be safely made from any value in their underlying storage type.

Required Methods

Produce a bit struct from the given underlying storage

Implementors