#[repr(C)]pub struct md5_ctx {
pub lo: u32,
pub hi: u32,
pub a: u32,
pub b: u32,
pub c: u32,
pub d: u32,
pub buffer: [c_uchar; 64],
}Fields§
§lo: u32§hi: u32§a: u32§b: u32§c: u32§d: u32§buffer: [c_uchar; 64]Trait Implementations§
impl Copy for md5_ctx
Auto Trait Implementations§
impl Freeze for md5_ctx
impl RefUnwindSafe for md5_ctx
impl Send for md5_ctx
impl Sync for md5_ctx
impl Unpin for md5_ctx
impl UnsafeUnpin for md5_ctx
impl UnwindSafe for md5_ctx
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