Enum smoltcp::phy::Checksum[][src]

pub enum Checksum {
    Both,
    Rx,
    Tx,
    None,
}

A description of checksum behavior for a particular protocol.

Variants

Both

Verify checksum when receiving and compute checksum when sending.

Rx

Verify checksum when receiving.

Tx

Compute checksum before sending.

None

Ignore checksum completely.

Implementations

impl Checksum[src]

pub fn rx(&self) -> bool[src]

Returns whether checksum should be verified when receiving.

pub fn tx(&self) -> bool[src]

Returns whether checksum should be verified when sending.

Trait Implementations

impl Clone for Checksum[src]

impl Copy for Checksum[src]

impl Debug for Checksum[src]

impl Default for Checksum[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.