#[repr(C)]pub struct sha512_ctx {
pub state: [u64; 8],
pub count_low: u64,
pub count_high: u64,
pub index: c_uint,
pub block: [u8; 128],
}Fields§
§state: [u64; 8]§count_low: u64§count_high: u64§index: c_uint§block: [u8; 128]Trait Implementations§
Source§impl Clone for sha512_ctx
impl Clone for sha512_ctx
Source§fn clone(&self) -> sha512_ctx
fn clone(&self) -> sha512_ctx
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 Debug for sha512_ctx
impl Debug for sha512_ctx
impl Copy for sha512_ctx
Auto Trait Implementations§
impl Freeze for sha512_ctx
impl RefUnwindSafe for sha512_ctx
impl Send for sha512_ctx
impl Sync for sha512_ctx
impl Unpin for sha512_ctx
impl UnsafeUnpin for sha512_ctx
impl UnwindSafe for sha512_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