[][src]Enum atsame70j21b::aes::aes_mr::OPMOD_A

#[repr(u8)]pub enum OPMOD_A {
    ECB,
    CBC,
    OFB,
    CFB,
    CTR,
    GCM,
}

Operating Mode

Value on reset: 0

Variants

ECB

0: ECB: Electronic Code Book mode

CBC

1: CBC: Cipher Block Chaining mode

OFB

2: OFB: Output Feedback mode

CFB

3: CFB: Cipher Feedback mode

CTR

4: CTR: Counter mode (16-bit internal counter)

GCM

5: GCM: Galois/Counter mode

Trait Implementations

impl Clone for OPMOD_A[src]

impl Copy for OPMOD_A[src]

impl Debug for OPMOD_A[src]

impl From<OPMOD_A> for u8[src]

impl PartialEq<OPMOD_A> for OPMOD_A[src]

impl StructuralPartialEq for OPMOD_A[src]

Auto Trait Implementations

impl Send for OPMOD_A

impl Sync for OPMOD_A

impl Unpin for OPMOD_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> Same<T> for T

type Output = T

Should always be Self

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.