#[repr(C)]pub struct ocrypto_sha512_ctx {
pub h: [u64; 8],
pub v: [u64; 8],
pub w: [u64; 16],
pub buffer: [u8; 128],
pub length: u32,
pub in_length: usize,
}Expand description
@cond
Fields§
§h: [u64; 8]§v: [u64; 8]§w: [u64; 16]§buffer: [u8; 128]§length: u32§in_length: usizeTrait Implementations§
Source§impl Clone for ocrypto_sha512_ctx
impl Clone for ocrypto_sha512_ctx
Source§fn clone(&self) -> ocrypto_sha512_ctx
fn clone(&self) -> ocrypto_sha512_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 ocrypto_sha512_ctx
impl Debug for ocrypto_sha512_ctx
impl Copy for ocrypto_sha512_ctx
Auto Trait Implementations§
impl Freeze for ocrypto_sha512_ctx
impl RefUnwindSafe for ocrypto_sha512_ctx
impl Send for ocrypto_sha512_ctx
impl Sync for ocrypto_sha512_ctx
impl Unpin for ocrypto_sha512_ctx
impl UnwindSafe for ocrypto_sha512_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