[][src]Enum stm32f0xx_hal::pac::usb::epr::STAT_RX_A

#[repr(u8)]pub enum STAT_RX_A {
    DISABLED,
    STALL,
    NAK,
    VALID,
}

Status bits, for reception transfers

Value on reset: 0

Variants

DISABLED

0: all reception requests addressed to this endpoint are ignored

STALL

1: the endpoint is stalled and all reception requests result in a STALL handshake

NAK

2: the endpoint is naked and all reception requests result in a NAK handshake

VALID

3: this endpoint is enabled for reception

Trait Implementations

impl Clone for STAT_RX_A[src]

impl Copy for STAT_RX_A[src]

impl Debug for STAT_RX_A[src]

impl PartialEq<STAT_RX_A> for STAT_RX_A[src]

Auto Trait Implementations

impl Send for STAT_RX_A

impl Sync for STAT_RX_A

impl Unpin for STAT_RX_A

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.