pub struct TrendFollowerBatchRange {
pub trend_period: (usize, usize, usize),
pub ma_period: (usize, usize, usize),
pub channel_rate_percent: (f64, f64, f64),
pub linear_regression_period: (usize, usize, usize),
pub matype: (String, String, String),
pub use_linear_regression: bool,
}Fields§
§trend_period: (usize, usize, usize)§ma_period: (usize, usize, usize)§channel_rate_percent: (f64, f64, f64)§linear_regression_period: (usize, usize, usize)§matype: (String, String, String)§use_linear_regression: boolTrait Implementations§
Source§impl Clone for TrendFollowerBatchRange
impl Clone for TrendFollowerBatchRange
Source§fn clone(&self) -> TrendFollowerBatchRange
fn clone(&self) -> TrendFollowerBatchRange
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 TrendFollowerBatchRange
impl Debug for TrendFollowerBatchRange
Auto Trait Implementations§
impl Freeze for TrendFollowerBatchRange
impl RefUnwindSafe for TrendFollowerBatchRange
impl Send for TrendFollowerBatchRange
impl Sync for TrendFollowerBatchRange
impl Unpin for TrendFollowerBatchRange
impl UnsafeUnpin for TrendFollowerBatchRange
impl UnwindSafe for TrendFollowerBatchRange
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more