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

#[repr(u8)]pub enum CS4_A {
    VAL_0X00,
    VAL_0X01,
    VAL_0X02,
    VAL_0X03,
    VAL_0X04,
    VAL_0X05,
    VAL_0X06,
    VAL_0X07,
}

Prescaler source of Timer/Counter 4

Value on reset: 0

Variants

VAL_0X00

0: No Clock Source (Stopped)

VAL_0X01

1: Running, No Prescaling

VAL_0X02

2: Running, CLK/8

VAL_0X03

3: Running, CLK/64

VAL_0X04

4: Running, CLK/256

VAL_0X05

5: Running, CLK/1024

VAL_0X06

6: Running, ExtClk Tx Falling Edge

VAL_0X07

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.