pub struct EntropyPoint {
pub sample_size: usize,
pub shannon_h: f64,
pub min_entropy: f64,
pub collection_time_ms: u64,
}Expand description
Entropy at a specific sample size.
Fields§
§sample_size: usize§shannon_h: f64§min_entropy: f64§collection_time_ms: u64Trait Implementations§
Source§impl Clone for EntropyPoint
impl Clone for EntropyPoint
Source§fn clone(&self) -> EntropyPoint
fn clone(&self) -> EntropyPoint
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 EntropyPoint
impl Debug for EntropyPoint
Auto Trait Implementations§
impl Freeze for EntropyPoint
impl RefUnwindSafe for EntropyPoint
impl Send for EntropyPoint
impl Sync for EntropyPoint
impl Unpin for EntropyPoint
impl UnsafeUnpin for EntropyPoint
impl UnwindSafe for EntropyPoint
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