Struct nettle_sys::nettle_mac
source · #[repr(C)]pub struct nettle_mac {
pub name: *const c_char,
pub context_size: c_uint,
pub digest_size: c_uint,
pub key_size: c_uint,
pub set_key: nettle_set_key_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
§key_size: c_uint
§set_key: nettle_set_key_func
§update: nettle_hash_update_func
§digest: nettle_hash_digest_func
Trait Implementations§
source§impl Clone for nettle_mac
impl Clone for nettle_mac
source§fn clone(&self) -> nettle_mac
fn clone(&self) -> nettle_mac
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_mac
impl Debug for nettle_mac
impl Copy for nettle_mac
Auto Trait Implementations§
impl RefUnwindSafe for nettle_mac
impl !Send for nettle_mac
impl !Sync for nettle_mac
impl Unpin for nettle_mac
impl UnwindSafe for nettle_mac
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