#[repr(C)]pub struct md5_context {
pub total: [u32; 2],
pub state: [u32; 4],
pub buffer: [c_uchar; 64],
}Fields§
§total: [u32; 2]§state: [u32; 4]§buffer: [c_uchar; 64]Trait Implementations§
Source§impl Clone for md5_context
impl Clone for md5_context
Source§fn clone(&self) -> md5_context
fn clone(&self) -> md5_context
Returns a duplicate 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 md5_context
impl Default for md5_context
impl Copy for md5_context
Auto Trait Implementations§
impl Freeze for md5_context
impl RefUnwindSafe for md5_context
impl Send for md5_context
impl Sync for md5_context
impl Unpin for md5_context
impl UnwindSafe for md5_context
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