#[repr(C)]pub struct Params {
pub id: usize,
pub data: *const u8,
pub length: usize,
}Expand description
Parameters of hmac_update
Fields§
§id: usizeThe identifier returned by the associated [hmac_initialize()] call.
data: *const u8The pointer to the data to hmac.
length: usizeThe length of the data to hmac.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Params
impl RefUnwindSafe for Params
impl !Send for Params
impl !Sync for Params
impl Unpin for Params
impl UnwindSafe for Params
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