[][src]Enum avr_device::atmega2560::tc2::tccr2b::CS2_A

#[repr(u8)]pub enum CS2_A {
    NO_CLOCK,
    DIRECT,
    PRESCALE_8,
    PRESCALE_32,
    PRESCALE_64,
    PRESCALE_128,
    PRESCALE_256,
    PRESCALE_1024,
}

Clock Select bits

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_32

3: Running, CLK/32

PRESCALE_64

4: Running, CLK/64

PRESCALE_128

5: Running, CLK/128

PRESCALE_256

6: Running, CLK/256

PRESCALE_1024

7: Running, CLK/1024

Trait Implementations

impl Clone for CS2_A[src]

impl Copy for CS2_A[src]

impl Debug for CS2_A[src]

impl From<CS2_A> for u8[src]

impl PartialEq<CS2_A> for CS2_A[src]

impl StructuralPartialEq for CS2_A[src]

Auto Trait Implementations

impl Send for CS2_A

impl Sync for CS2_A

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