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