#[repr(C)]pub struct fz_md5 {
pub lo: u32,
pub hi: u32,
pub a: u32,
pub b: u32,
pub c: u32,
pub d: u32,
pub buffer: [c_uchar; 64],
}Expand description
Structure definition is public to enable stack
based allocation. Do not access the members directly.
Fields§
§lo: u32§hi: u32§a: u32§b: u32§c: u32§d: u32§buffer: [c_uchar; 64]Trait Implementations§
Auto Trait Implementations§
impl Freeze for fz_md5
impl RefUnwindSafe for fz_md5
impl Send for fz_md5
impl Sync for fz_md5
impl Unpin for fz_md5
impl UnwindSafe for fz_md5
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