Struct flipperzero_sys::md5_context
source · #[repr(C)]pub struct md5_context {
pub total: [u32; 2],
pub state: [u32; 4],
pub buffer: [c_uchar; 64],
}Expand description
MD5 context structure
Fields§
§total: [u32; 2]number of bytes processed
state: [u32; 4]intermediate digest state
buffer: [c_uchar; 64]data block being processed
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 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 Debug for md5_context
impl Debug for md5_context
impl Copy for md5_context
Auto Trait Implementations§
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