Enum nrf52833_hal::pac::p0::pin_cnf::DRIVE_A[][src]

#[repr(u8)]pub enum DRIVE_A {
    S0S1,
    H0S1,
    S0H1,
    H0H1,
    D0S1,
    D0H1,
    S0D1,
    H0D1,
}

Drive configuration

Value on reset: 0

Variants

S0S1

0: Standard ‘0’, standard ‘1’

H0S1

1: High drive ‘0’, standard ‘1’

S0H1

2: Standard ‘0’, high drive ‘1’

H0H1

3: High drive ‘0’, high ’drive ‘1’’

D0S1

4: Disconnect ‘0’ standard ‘1’ (normally used for wired-or connections)

D0H1

5: Disconnect ‘0’, high drive ‘1’ (normally used for wired-or connections)

S0D1

6: Standard ‘0’. disconnect ‘1’ (normally used for wired-and connections)

H0D1

7: High drive ‘0’, disconnect ‘1’ (normally used for wired-and connections)

Trait Implementations

impl Clone for DRIVE_A[src]

impl Copy for DRIVE_A[src]

impl Debug for DRIVE_A[src]

impl PartialEq<DRIVE_A> for DRIVE_A[src]

impl StructuralPartialEq for DRIVE_A[src]

Auto Trait Implementations

impl Send for DRIVE_A

impl Sync for DRIVE_A

impl Unpin for DRIVE_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<Src, Dst> LosslessTryInto<Dst> for Src where
    Dst: LosslessTryFrom<Src>, 
[src]

impl<Src, Dst> LossyInto<Dst> for Src where
    Dst: LossyFrom<Src>, 
[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.