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