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
\brief 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
sourceimpl Clone for md5_context
impl Clone for md5_context
sourcefn clone(&self) -> md5_context
fn clone(&self) -> md5_context
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more