#[repr(C)]pub struct sha256_state_st {
pub h: [u32; 8],
pub Nl: u32,
pub Nh: u32,
pub data: [u8; 64],
pub num: c_uint,
pub md_len: c_uint,
}
Fields
h: [u32; 8]
Nl: u32
Nh: u32
data: [u8; 64]
num: c_uint
md_len: c_uint
Trait Implementations
sourceimpl Clone for sha256_state_st
impl Clone for sha256_state_st
sourcefn clone(&self) -> sha256_state_st
fn clone(&self) -> sha256_state_st
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for sha256_state_st
impl Debug for sha256_state_st
sourceimpl Default for sha256_state_st
impl Default for sha256_state_st
sourceimpl PartialEq<sha256_state_st> for sha256_state_st
impl PartialEq<sha256_state_st> for sha256_state_st
sourcefn eq(&self, other: &sha256_state_st) -> bool
fn eq(&self, other: &sha256_state_st) -> bool
impl Copy for sha256_state_st
impl Eq for sha256_state_st
impl StructuralEq for sha256_state_st
impl StructuralPartialEq for sha256_state_st
Auto Trait Implementations
impl RefUnwindSafe for sha256_state_st
impl Send for sha256_state_st
impl Sync for sha256_state_st
impl Unpin for sha256_state_st
impl UnwindSafe for sha256_state_st
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more