Enum lpc55_hal::drivers::aes::Key[][src]

pub enum Key<Size: KeySize> {
    Puf,
    User(GenericArray<u8, Size>),
}

Variants

Puf
User(GenericArray<u8, Size>)

Trait Implementations

impl<Size: Clone + KeySize> Clone for Key<Size>[src]

impl<Size: Debug + KeySize> Debug for Key<Size>[src]

impl<Size: PartialEq + KeySize> PartialEq<Key<Size>> for Key<Size>[src]

impl<Size: KeySize> StructuralPartialEq for Key<Size>[src]

Auto Trait Implementations

impl<Size> Send for Key<Size>

impl<Size> Sync for Key<Size>

impl<Size> Unpin for Key<Size> where
    <Size as ArrayLength<u8>>::ArrayType: Unpin

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.