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