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