pub struct HurstEstimate {
pub value: f64,
pub confidence: f64,
pub sample_count: u64,
}Expand description
Hurst exponent estimate for trend detection
Fields§
§value: f64§confidence: f64§sample_count: u64Trait Implementations§
Source§impl Clone for HurstEstimate
impl Clone for HurstEstimate
Source§fn clone(&self) -> HurstEstimate
fn clone(&self) -> HurstEstimate
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HurstEstimate
impl Debug for HurstEstimate
Source§impl<'de> Deserialize<'de> for HurstEstimate
impl<'de> Deserialize<'de> for HurstEstimate
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for HurstEstimate
impl RefUnwindSafe for HurstEstimate
impl Send for HurstEstimate
impl Sync for HurstEstimate
impl Unpin for HurstEstimate
impl UnsafeUnpin for HurstEstimate
impl UnwindSafe for HurstEstimate
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