[][src]Enum max6955::DecodeMode

pub enum DecodeMode {
    NoDecode,
    HexD0,
    HexD0D2,
    Hex,
}

Decode Mode. see Table 15

Variants

NoDecode

No decode for digit pairs 7 to 0.

HexD0

Hexadecimal decode for digit pair 0, no decode for digit pairs 7 to 1.

HexD0D2

Hexadecimal decode for digit pairs 2 to 0, no decode for digit pairs 7 to 3.

Hex

Hexadecimal decode for digit pairs 7 to 0.

Methods

impl DecodeMode[src]

pub fn value(self) -> u8[src]

return enum value as u8

Auto Trait Implementations

impl Send for DecodeMode

impl Sync for DecodeMode

impl Unpin for DecodeMode

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.