[]Enum nucleo_f042k6::crc::cr::REV_INR

pub enum REV_INR {
    NORMAL,
    BYTE,
    HALFWORD,
    WORD,
}

Possible values of the field REV_IN

Variants

NORMAL

Bit order not affected

BYTE

Bit reversal done by byte

HALFWORD

Bit reversal done by half-word

WORD

Bit reversal done by word

Methods

impl REV_INR

pub fn bits(&self) -> u8

Value of the field as raw bits

pub fn is_normal(&self) -> bool

Checks if the value of the field is NORMAL

pub fn is_byte(&self) -> bool

Checks if the value of the field is BYTE

pub fn is_half_word(&self) -> bool

Checks if the value of the field is HALFWORD

pub fn is_word(&self) -> bool

Checks if the value of the field is WORD

Trait Implementations

impl PartialEq<REV_INR> for REV_INR

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Copy for REV_INR

impl Debug for REV_INR

impl Clone for REV_INR

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Unpin for REV_INR

impl Sync for REV_INR

impl Send for REV_INR

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self