#[repr(C)]
pub union md_ctx_union {
pub md5: MD5_CTX,
pub sha1: SHA_CTX,
pub sha256: SHA256_CTX,
pub sha512: SHA512_CTX,
}
Fields§
§md5: MD5_CTX
§sha1: SHA_CTX
§sha256: SHA256_CTX
§sha512: SHA512_CTX
Trait Implementations§
Source§impl Clone for md_ctx_union
impl Clone for md_ctx_union
Source§fn clone(&self) -> md_ctx_union
fn clone(&self) -> md_ctx_union
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 md_ctx_union
impl Default for md_ctx_union
impl Copy for md_ctx_union
Auto Trait Implementations§
impl Freeze for md_ctx_union
impl RefUnwindSafe for md_ctx_union
impl Send for md_ctx_union
impl Sync for md_ctx_union
impl Unpin for md_ctx_union
impl UnwindSafe for md_ctx_union
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