#[repr(C)]pub struct hmac_ctx_st {
pub md: *const EVP_MD,
pub methods: *const HmacMethods,
pub md_ctx: md_ctx_union,
pub i_ctx: md_ctx_union,
pub o_ctx: md_ctx_union,
pub state: i8,
}
Fields§
§md: *const EVP_MD
§methods: *const HmacMethods
§md_ctx: md_ctx_union
§i_ctx: md_ctx_union
§o_ctx: md_ctx_union
§state: i8
Trait Implementations§
Source§impl Clone for hmac_ctx_st
impl Clone for hmac_ctx_st
Source§fn clone(&self) -> hmac_ctx_st
fn clone(&self) -> hmac_ctx_st
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 Default for hmac_ctx_st
impl Default for hmac_ctx_st
impl Copy for hmac_ctx_st
Auto Trait Implementations§
impl Freeze for hmac_ctx_st
impl RefUnwindSafe for hmac_ctx_st
impl !Send for hmac_ctx_st
impl !Sync for hmac_ctx_st
impl Unpin for hmac_ctx_st
impl UnwindSafe for hmac_ctx_st
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