[][src]Enum pwm_pca9685::DisabledOutputValue

pub enum DisabledOutputValue {
    Zero,
    OutputDriver,
    HighImpedance,
}

Value set to all outputs when the output drivers are disabled (OE = 1).

Variants

Zero

Set all outputs to 0 (default).

OutputDriver

Set all outputs to a value dependent on the OutputDriver configuration.

  • Set all outputs to 1 for OutputDriver::TotemPole.
  • Set all outputs to high-impedance for OutputDriver::OpenDrain.
HighImpedance

Set all outputs to high-impedance.

Trait Implementations

impl Debug for DisabledOutputValue[src]

impl PartialEq<DisabledOutputValue> for DisabledOutputValue[src]

impl Copy for DisabledOutputValue[src]

impl StructuralPartialEq for DisabledOutputValue[src]

impl Clone for DisabledOutputValue[src]

impl Default for DisabledOutputValue[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Error = !

The type returned in the event of a conversion error.

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

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

type Owned = T

The resulting type after obtaining ownership.