Enum lpc55_pac::hashcrypt::status::NEEDIV_A[][src]

pub enum NEEDIV_A {
    NOT_NEED,
    NEED,
}

Indicates the block wants an IV/NONE to be written in (set along with WAITING)

Value on reset: 0

Variants

NOT_NEED

0: No IV/Nonce is needed, either because written already or because not needed.

NEED

1: IV/Nonce is needed and INDATA/ALIAS will be accepted as IV/Nonce. Will also set WAITING.

Trait Implementations

impl Clone for NEEDIV_A[src]

impl Copy for NEEDIV_A[src]

impl Debug for NEEDIV_A[src]

impl PartialEq<NEEDIV_A> for NEEDIV_A[src]

impl StructuralPartialEq for NEEDIV_A[src]

Auto Trait Implementations

impl Send for NEEDIV_A

impl Sync for NEEDIV_A

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