pub struct ValidatedKama { /* private fields */ }Implementations§
Source§impl ValidatedKama
impl ValidatedKama
pub fn new(params: KamaParams) -> FinanceResult<Self>
pub fn params(self) -> KamaParams
pub fn compute(self, closes: &[f64]) -> FinanceResult<Vec<Option<f64>>>
Trait Implementations§
Source§impl Clone for ValidatedKama
impl Clone for ValidatedKama
Source§fn clone(&self) -> ValidatedKama
fn clone(&self) -> ValidatedKama
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 moreimpl Copy for ValidatedKama
Source§impl Debug for ValidatedKama
impl Debug for ValidatedKama
impl Eq for ValidatedKama
Source§impl Hash for ValidatedKama
impl Hash for ValidatedKama
Source§impl PartialEq for ValidatedKama
impl PartialEq for ValidatedKama
impl StructuralPartialEq for ValidatedKama
Auto Trait Implementations§
impl Freeze for ValidatedKama
impl RefUnwindSafe for ValidatedKama
impl Send for ValidatedKama
impl Sync for ValidatedKama
impl Unpin for ValidatedKama
impl UnsafeUnpin for ValidatedKama
impl UnwindSafe for ValidatedKama
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