[][src]Enum avr_device::atmega2560::tc1::tccr1a::COM1C_A

#[repr(u8)]pub enum COM1C_A {
    DISCONNECTED,
    MATCH_TOGGLE,
    MATCH_CLEAR,
    MATCH_SET,
}

Compare Output Mode 1C, bits

Value on reset: 0

Variants

DISCONNECTED

0: Normal port operation, OCix disconnected

MATCH_TOGGLE

1: Toggle OCix on Compare Match (Might depend on WGM)

MATCH_CLEAR

2: Clear OCix on Compare Match (If PWM is enabled, OCix is set at TOP)

MATCH_SET

3: Set OCix on Compare Match (If PWM is enabled, OCix is cleared at TOP)

Trait Implementations

impl Clone for COM1C_A[src]

impl Copy for COM1C_A[src]

impl Debug for COM1C_A[src]

impl From<COM1C_A> for u8[src]

impl PartialEq<COM1C_A> for COM1C_A[src]

impl StructuralPartialEq for COM1C_A[src]

Auto Trait Implementations

impl Send for COM1C_A

impl Sync for COM1C_A

impl Unpin for COM1C_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, 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.