pub struct SecureRngStats {
pub bytes_generated: u64,
pub entropy_collected: u64,
pub initialized: bool,
}
Expand description
Secure RNG statistics.
Fields§
§bytes_generated: u64
§entropy_collected: u64
§initialized: bool
Trait Implementations§
Source§impl Clone for SecureRngStats
impl Clone for SecureRngStats
Source§fn clone(&self) -> SecureRngStats
fn clone(&self) -> SecureRngStats
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 moreAuto Trait Implementations§
impl Freeze for SecureRngStats
impl RefUnwindSafe for SecureRngStats
impl Send for SecureRngStats
impl Sync for SecureRngStats
impl Unpin for SecureRngStats
impl UnwindSafe for SecureRngStats
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