pub struct MACDResult {
pub macd_line: f64,
pub signal_line: f64,
pub histogram: f64,
pub signal: TradingSignal,
}Fields§
§macd_line: f64§signal_line: f64§histogram: f64§signal: TradingSignalTrait Implementations§
Source§impl Clone for MACDResult
impl Clone for MACDResult
Source§fn clone(&self) -> MACDResult
fn clone(&self) -> MACDResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MACDResult
impl Debug for MACDResult
Auto Trait Implementations§
impl Freeze for MACDResult
impl RefUnwindSafe for MACDResult
impl Send for MACDResult
impl Sync for MACDResult
impl Unpin for MACDResult
impl UnwindSafe for MACDResult
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