pub struct LagCorrelation {
pub lag: usize,
pub correlation: f64,
}Expand description
Autocorrelation at a single lag.
Fields§
§lag: usize§correlation: f64Trait Implementations§
Source§impl Clone for LagCorrelation
impl Clone for LagCorrelation
Source§fn clone(&self) -> LagCorrelation
fn clone(&self) -> LagCorrelation
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 LagCorrelation
impl Debug for LagCorrelation
Auto Trait Implementations§
impl Freeze for LagCorrelation
impl RefUnwindSafe for LagCorrelation
impl Send for LagCorrelation
impl Sync for LagCorrelation
impl Unpin for LagCorrelation
impl UnsafeUnpin for LagCorrelation
impl UnwindSafe for LagCorrelation
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