[][src]Enum avr_device::atmega2560::ac::acsr::ACIS_A

#[repr(u8)]pub enum ACIS_A {
    ON_TOGGLE,
    ON_FALLING_EDGE,
    ON_RISING_EDGE,
}

Analog Comparator Interrupt Mode Select

Value on reset: 0

Variants

ON_TOGGLE

0: Interrupt on Toggle

ON_FALLING_EDGE

2: Interrupt on Falling Edge

ON_RISING_EDGE

3: Interrupt on Rising Edge

Trait Implementations

impl Clone for ACIS_A[src]

impl Copy for ACIS_A[src]

impl Debug for ACIS_A[src]

impl From<ACIS_A> for u8[src]

impl PartialEq<ACIS_A> for ACIS_A[src]

impl StructuralPartialEq for ACIS_A[src]

Auto Trait Implementations

impl Send for ACIS_A

impl Sync for ACIS_A

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