pub struct KstParams {
pub sma_period1: Option<usize>,
pub sma_period2: Option<usize>,
pub sma_period3: Option<usize>,
pub sma_period4: Option<usize>,
pub roc_period1: Option<usize>,
pub roc_period2: Option<usize>,
pub roc_period3: Option<usize>,
pub roc_period4: Option<usize>,
pub signal_period: Option<usize>,
}Fields§
§sma_period1: Option<usize>§sma_period2: Option<usize>§sma_period3: Option<usize>§sma_period4: Option<usize>§roc_period1: Option<usize>§roc_period2: Option<usize>§roc_period3: Option<usize>§roc_period4: Option<usize>§signal_period: Option<usize>Trait Implementations§
impl Copy for KstParams
Auto Trait Implementations§
impl Freeze for KstParams
impl RefUnwindSafe for KstParams
impl Send for KstParams
impl Sync for KstParams
impl Unpin for KstParams
impl UnsafeUnpin for KstParams
impl UnwindSafe for KstParams
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