#[repr(C)]pub struct sha256_context {
pub total: [u32; 2],
pub state: [u32; 8],
pub buffer: [c_uchar; 64],
pub is224: c_int,
}Fields§
§total: [u32; 2]§state: [u32; 8]§buffer: [c_uchar; 64]§is224: c_intTrait Implementations§
Source§impl Clone for sha256_context
impl Clone for sha256_context
Source§fn clone(&self) -> sha256_context
fn clone(&self) -> sha256_context
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 Default for sha256_context
impl Default for sha256_context
impl Copy for sha256_context
Auto Trait Implementations§
impl Freeze for sha256_context
impl RefUnwindSafe for sha256_context
impl Send for sha256_context
impl Sync for sha256_context
impl Unpin for sha256_context
impl UnwindSafe for sha256_context
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