#[repr(C)]pub struct sha512_state {
pub length: ulong64,
pub state: [ulong64; 8],
pub curlen: c_ulong,
pub buf: [c_uchar; 128],
}
Fields§
§length: ulong64
§state: [ulong64; 8]
§curlen: c_ulong
§buf: [c_uchar; 128]
Trait Implementations§
Source§impl Clone for sha512_state
impl Clone for sha512_state
impl Copy for sha512_state
Auto Trait Implementations§
impl Freeze for sha512_state
impl RefUnwindSafe for sha512_state
impl Send for sha512_state
impl Sync for sha512_state
impl Unpin for sha512_state
impl UnwindSafe for sha512_state
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