pub struct EMAValues {
pub short: Option<f64>,
pub medium: Option<f64>,
pub long: Option<f64>,
}Expand description
EMA values for different periods.
Fields§
§short: Option<f64>Short period EMA value.
medium: Option<f64>Medium period EMA value.
long: Option<f64>Long period EMA value.
Trait Implementations§
impl StructuralPartialEq for EMAValues
Auto Trait Implementations§
impl Freeze for EMAValues
impl RefUnwindSafe for EMAValues
impl Send for EMAValues
impl Sync for EMAValues
impl Unpin for EMAValues
impl UnwindSafe for EMAValues
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