pub struct PossibleRsiBatchRange {
pub period: (usize, usize, usize),
pub norm_period: (usize, usize, usize),
pub normalization_length: (usize, usize, usize),
pub nonlag_period: (usize, usize, usize),
pub dynamic_zone_period: (usize, usize, usize),
pub buy_probability: (f64, f64, f64),
pub sell_probability: (f64, f64, f64),
pub highpass_period: (usize, usize, usize),
}Fields§
§period: (usize, usize, usize)§norm_period: (usize, usize, usize)§normalization_length: (usize, usize, usize)§nonlag_period: (usize, usize, usize)§dynamic_zone_period: (usize, usize, usize)§buy_probability: (f64, f64, f64)§sell_probability: (f64, f64, f64)§highpass_period: (usize, usize, usize)Trait Implementations§
Source§impl Clone for PossibleRsiBatchRange
impl Clone for PossibleRsiBatchRange
Source§fn clone(&self) -> PossibleRsiBatchRange
fn clone(&self) -> PossibleRsiBatchRange
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 PossibleRsiBatchRange
impl Debug for PossibleRsiBatchRange
Source§impl Default for PossibleRsiBatchRange
impl Default for PossibleRsiBatchRange
impl Copy for PossibleRsiBatchRange
Auto Trait Implementations§
impl Freeze for PossibleRsiBatchRange
impl RefUnwindSafe for PossibleRsiBatchRange
impl Send for PossibleRsiBatchRange
impl Sync for PossibleRsiBatchRange
impl Unpin for PossibleRsiBatchRange
impl UnsafeUnpin for PossibleRsiBatchRange
impl UnwindSafe for PossibleRsiBatchRange
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