pub struct RollingHurstWindow {
pub offset: usize,
pub hurst: f64,
pub r_squared: f64,
pub is_valid: bool,
}Fields§
§offset: usize§hurst: f64§r_squared: f64§is_valid: boolTrait Implementations§
Source§impl Clone for RollingHurstWindow
impl Clone for RollingHurstWindow
Source§fn clone(&self) -> RollingHurstWindow
fn clone(&self) -> RollingHurstWindow
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 RollingHurstWindow
impl Debug for RollingHurstWindow
Auto Trait Implementations§
impl Freeze for RollingHurstWindow
impl RefUnwindSafe for RollingHurstWindow
impl Send for RollingHurstWindow
impl Sync for RollingHurstWindow
impl Unpin for RollingHurstWindow
impl UnsafeUnpin for RollingHurstWindow
impl UnwindSafe for RollingHurstWindow
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