pub trait LsbInto<T>: Sized {
    fn lsb_into(self) -> T;
}
Expand description

LSB 0 bit numbering data to value conversion that consumes the input bytes

The opposite of FromLsb. One should avoid implementing LsbInto and implement FromLsb instead.

Required Methods

Implementors

Implementing FromLsb automatically provides one with an implementation of LsbInto thanks to this blanket implementation.