#[repr(C)]pub struct ripemd160_ctx {
pub state: [u32; 5],
pub count: u64,
pub index: c_uint,
pub block: [u8; 64],
}
Fields§
§state: [u32; 5]
§count: u64
§index: c_uint
§block: [u8; 64]
Trait Implementations§
Source§impl Clone for ripemd160_ctx
impl Clone for ripemd160_ctx
Source§fn clone(&self) -> ripemd160_ctx
fn clone(&self) -> ripemd160_ctx
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 ripemd160_ctx
impl Debug for ripemd160_ctx
impl Copy for ripemd160_ctx
Auto Trait Implementations§
impl Freeze for ripemd160_ctx
impl RefUnwindSafe for ripemd160_ctx
impl Send for ripemd160_ctx
impl Sync for ripemd160_ctx
impl Unpin for ripemd160_ctx
impl UnwindSafe for ripemd160_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