Struct p256_cortex_m4_sys::SignPrecomp[][src]

#[repr(C)]pub struct SignPrecomp {
    pub r: [u32; 8],
    pub k_inv: [u32; 8],
}

Sign precomputation state.

The content shall be treated as opaque to the API user and shall not be inspected or modified.

Fields

r: [u32; 8]k_inv: [u32; 8]

Trait Implementations

impl Clone for SignPrecomp[src]

impl Copy for SignPrecomp[src]

impl Debug for SignPrecomp[src]

Auto Trait Implementations

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.