Struct rp2040_pac2::dma::vals::SniffCtrlCalc[][src]

#[repr(transparent)]pub struct SniffCtrlCalc(pub u8);

Implementations

impl SniffCtrlCalc[src]

pub const CRC32: Self[src]

Calculate a CRC-32 (IEEE802.3 polynomial)

pub const CRC32R: Self[src]

Calculate a CRC-32 (IEEE802.3 polynomial) with bit reversed data

pub const CRC16: Self[src]

Calculate a CRC-16-CCITT

pub const CRC16R: Self[src]

Calculate a CRC-16-CCITT with bit reversed data

pub const EVEN: Self[src]

XOR reduction over all data. == 1 if the total 1 population count is odd.

pub const SUM: Self[src]

Calculate a simple 32-bit checksum (addition with a 32 bit accumulator)

Trait Implementations

impl Clone for SniffCtrlCalc[src]

impl Copy for SniffCtrlCalc[src]

Auto Trait Implementations

impl Send for SniffCtrlCalc

impl Sync for SniffCtrlCalc

impl Unpin for SniffCtrlCalc

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, 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.