pub struct SampleEntropyResult {
pub sample_entropy: f64,
pub m: usize,
pub r: f64,
pub count_a: u64,
pub count_b: u64,
pub actual_samples: usize,
pub is_valid: bool,
}Fields§
§sample_entropy: f64§m: usize§r: f64§count_a: u64§count_b: u64§actual_samples: usize§is_valid: boolTrait Implementations§
Source§impl Clone for SampleEntropyResult
impl Clone for SampleEntropyResult
Source§fn clone(&self) -> SampleEntropyResult
fn clone(&self) -> SampleEntropyResult
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 SampleEntropyResult
impl Debug for SampleEntropyResult
Auto Trait Implementations§
impl Freeze for SampleEntropyResult
impl RefUnwindSafe for SampleEntropyResult
impl Send for SampleEntropyResult
impl Sync for SampleEntropyResult
impl Unpin for SampleEntropyResult
impl UnsafeUnpin for SampleEntropyResult
impl UnwindSafe for SampleEntropyResult
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