[][src]Enum avr_device::atmega32u4::tc4::tccr4d::WGM4_A

#[repr(u8)]pub enum WGM4_A {
    PWM_FAST,
    PWM_CORRECT,
    PWM_SINGLE_SLOPE,
    PWM_DUAL_SLOPE,
}

Waveform Generation Mode bits

Value on reset: 0

Variants

PWM_FAST

0: Fast PWM, Update: TOP, Flag: TOP

PWM_CORRECT

1: Phase and Frequency Correct PWM, Update: BOTTOM, Flag: BOTTOM

PWM_SINGLE_SLOPE

2: PWM6 / Single-slope, Update: TOP, Flag: TOP

PWM_DUAL_SLOPE

3: PWM6 / Dual-slope, Update: BOTTOM, Flag: BOTTOM

Trait Implementations

impl Clone for WGM4_A[src]

impl Copy for WGM4_A[src]

impl Debug for WGM4_A[src]

impl From<WGM4_A> for u8[src]

impl PartialEq<WGM4_A> for WGM4_A[src]

impl StructuralPartialEq for WGM4_A[src]

Auto Trait Implementations

impl Send for WGM4_A

impl Sync for WGM4_A

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