[][src]Enum avr_device::atmega2560::tc4::tccr4b::CS4_A

#[repr(u8)]pub enum CS4_A {
    NO_CLOCK,
    DIRECT,
    PRESCALE_8,
    PRESCALE_64,
    PRESCALE_256,
    PRESCALE_1024,
    EXT_FALLING,
    EXT_RISING,
}

Prescaler source of Timer/Counter 4

Value on reset: 0

Variants

NO_CLOCK

0: No clock source (Timer/Counter stopped)

DIRECT

1: Running, No Prescaling

PRESCALE_8

2: Running, CLK/8

PRESCALE_64

3: Running, CLK/64

PRESCALE_256

4: Running, CLK/256

PRESCALE_1024

5: Running, CLK/1024

EXT_FALLING

6: Running, ExtClk Tx Falling Edge

EXT_RISING

7: Running, ExtClk Tx Rising Edge

Trait Implementations

impl Clone for CS4_A[src]

impl Copy for CS4_A[src]

impl Debug for CS4_A[src]

impl From<CS4_A> for u8[src]

impl PartialEq<CS4_A> for CS4_A[src]

impl StructuralPartialEq for CS4_A[src]

Auto Trait Implementations

impl Send for CS4_A

impl Sync for CS4_A

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