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