#[repr(C)]pub struct r_hash_t {
pub md5: R_MD5_CTX,
pub sha1: R_SHA_CTX,
pub sha256: R_SHA256_CTX,
pub sha384: R_SHA384_CTX,
pub sha512: R_SHA512_CTX,
pub rst: bool,
pub entropy: f64,
pub digest: [c_uchar; 128],
}
Fields§
§md5: R_MD5_CTX
§sha1: R_SHA_CTX
§sha256: R_SHA256_CTX
§sha384: R_SHA384_CTX
§sha512: R_SHA512_CTX
§rst: bool
§entropy: f64
§digest: [c_uchar; 128]
Trait Implementations§
Auto Trait Implementations§
impl Freeze for r_hash_t
impl RefUnwindSafe for r_hash_t
impl Send for r_hash_t
impl Sync for r_hash_t
impl Unpin for r_hash_t
impl UnwindSafe for r_hash_t
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