Enum stm32h7xx_hal::crc::BitReversal[][src]

#[repr(u8)]pub enum BitReversal {
    Byte,
    HalfWord,
    Word,
}

How to reverse the input bits.

ST refers to this as both ‘reversal’ and ‘inversion’. If a CRC calls for ‘reflection’ it most likely wants BitReversal::Byte and output reversal enabled.

Variants

Byte

Each input byte has its bits reversed. 0x1A2B3C4D becomes 0x58D43CB2.

HalfWord

Bits reversed by half-word. 0x1A2B3C4D becomes 0xD458B23C.

Word

Bits reversed by word. 0x1A2B3C4D becomes 0xB23CD458.

Trait Implementations

impl Clone for BitReversal[src]

impl Copy for BitReversal[src]

impl Debug for BitReversal[src]

impl PartialEq<BitReversal> for BitReversal[src]

impl StructuralPartialEq for BitReversal[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.