Struct nettle_sys::nettle_hash
source · #[repr(C)]pub struct nettle_hash {
pub name: *const c_char,
pub context_size: c_uint,
pub digest_size: c_uint,
pub block_size: c_uint,
pub init: nettle_hash_init_func,
pub update: nettle_hash_update_func,
pub digest: nettle_hash_digest_func,
}
Fields§
§name: *const c_char
§context_size: c_uint
§digest_size: c_uint
§block_size: c_uint
§init: nettle_hash_init_func
§update: nettle_hash_update_func
§digest: nettle_hash_digest_func
Trait Implementations§
source§impl Clone for nettle_hash
impl Clone for nettle_hash
source§fn clone(&self) -> nettle_hash
fn clone(&self) -> nettle_hash
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for nettle_hash
impl Debug for nettle_hash
impl Copy for nettle_hash
Auto Trait Implementations§
impl RefUnwindSafe for nettle_hash
impl !Send for nettle_hash
impl !Sync for nettle_hash
impl Unpin for nettle_hash
impl UnwindSafe for nettle_hash
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more