#[repr(C)]pub struct sha512_state_st {
pub h: [u64; 8],
pub Nl: u64,
pub Nh: u64,
pub p: [u8; 128],
pub num: c_uint,
pub md_len: c_uint,
}
Fields§
§h: [u64; 8]
§Nl: u64
§Nh: u64
§p: [u8; 128]
§num: c_uint
§md_len: c_uint
Trait Implementations§
Source§impl Clone for sha512_state_st
impl Clone for sha512_state_st
Source§fn clone(&self) -> sha512_state_st
fn clone(&self) -> sha512_state_st
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 sha512_state_st
impl Debug for sha512_state_st
Source§impl Default for sha512_state_st
impl Default for sha512_state_st
Source§impl PartialEq for sha512_state_st
impl PartialEq for sha512_state_st
impl Copy for sha512_state_st
impl Eq for sha512_state_st
impl StructuralPartialEq for sha512_state_st
Auto Trait Implementations§
impl Freeze for sha512_state_st
impl RefUnwindSafe for sha512_state_st
impl Send for sha512_state_st
impl Sync for sha512_state_st
impl Unpin for sha512_state_st
impl UnwindSafe for sha512_state_st
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