#[repr(C)]pub struct sha256_ctx {
pub state: [u32; 8],
pub count: u64,
pub index: c_uint,
pub block: [u8; 64],
}Fields§
§state: [u32; 8]§count: u64§index: c_uint§block: [u8; 64]Trait Implementations§
Source§impl Clone for sha256_ctx
impl Clone for sha256_ctx
Source§fn clone(&self) -> sha256_ctx
fn clone(&self) -> sha256_ctx
Returns a duplicate 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 sha256_ctx
impl Debug for sha256_ctx
impl Copy for sha256_ctx
Auto Trait Implementations§
impl Freeze for sha256_ctx
impl RefUnwindSafe for sha256_ctx
impl Send for sha256_ctx
impl Sync for sha256_ctx
impl Unpin for sha256_ctx
impl UnsafeUnpin for sha256_ctx
impl UnwindSafe for sha256_ctx
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