pub struct MovingAverageResults {
pub sma: SMAValues,
pub ema: EMAValues,
pub macd: Option<MACDResult>,
}Fields§
§sma: SMAValues§ema: EMAValues§macd: Option<MACDResult>Trait Implementations§
Auto Trait Implementations§
impl Freeze for MovingAverageResults
impl RefUnwindSafe for MovingAverageResults
impl Send for MovingAverageResults
impl Sync for MovingAverageResults
impl Unpin for MovingAverageResults
impl UnwindSafe for MovingAverageResults
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