[][src]Enum spectrusty::chip::ReadEarMode

pub enum ReadEarMode {
    Issue3,
    Issue2,
    Clear,
    Set,
}

This enum determines the EAR input (bit 6) read from the 0xFE port when there is no EAR input feed.

Variants

Issue3

Issue 3 keyboard behavior - EAR input is 1 when EAR output is 1

Issue2

Issue 2 keyboard behavior - EAR input is 1 when either EAR or MIC output is 1

Clear

Always clear - EAR input is always 0

Set

Always set - EAR input is always 1

Trait Implementations

impl Clone for ReadEarMode[src]

impl Copy for ReadEarMode[src]

impl Debug for ReadEarMode[src]

impl<'de> Deserialize<'de> for ReadEarMode[src]

impl Display for ReadEarMode[src]

impl Eq for ReadEarMode[src]

impl FromStr for ReadEarMode[src]

type Err = ParseReadEarModeError

The associated error which can be returned from parsing.

impl PartialEq<ReadEarMode> for ReadEarMode[src]

impl Serialize for ReadEarMode[src]

impl StructuralEq for ReadEarMode[src]

impl StructuralPartialEq for ReadEarMode[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<S, T> IntoSample<S> for T where
    S: FromSample<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,