[][src]Struct micro_ecc_sys::uECC_HashContext

#[repr(C)]pub struct uECC_HashContext {
    pub init_hash: Option<unsafe extern "C" fn(context: *const uECC_HashContext)>,
    pub update_hash: Option<unsafe extern "C" fn(context: *const uECC_HashContext, message: *const u8, message_size: c_uint)>,
    pub finish_hash: Option<unsafe extern "C" fn(context: *const uECC_HashContext, hash_result: *mut u8)>,
    pub block_size: c_uint,
    pub result_size: c_uint,
    pub tmp: *mut u8,
}

Fields

init_hash: Option<unsafe extern "C" fn(context: *const uECC_HashContext)>update_hash: Option<unsafe extern "C" fn(context: *const uECC_HashContext, message: *const u8, message_size: c_uint)>finish_hash: Option<unsafe extern "C" fn(context: *const uECC_HashContext, hash_result: *mut u8)>block_size: c_uintresult_size: c_uinttmp: *mut u8

Trait Implementations

impl Clone for uECC_HashContext[src]

impl Copy for uECC_HashContext[src]

impl Debug for uECC_HashContext[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.