pub trait FromMsb<T: Sized> {
    const BITS: usize = _;
    const MAX_BIT_INDEX: usize = _;
    const ASSERT_INDEX_IN_BOUNDS: usize = _;

    fn from_msb(_: T) -> Self;
}
Expand description

MSB 0 bit numbering data to value conversion

It is the reciprocal of MsbInto.

Provided Associated Constants

Required Methods

Implementations on Foreign Types

Implementors