pub struct MacdOutput {
pub macd_line: f64,
pub signal_line: f64,
pub histogram: f64,
}Expand description
MACD output values.
Fields§
§macd_line: f64§signal_line: f64§histogram: f64Trait Implementations§
Source§impl Clone for MacdOutput
impl Clone for MacdOutput
Source§fn clone(&self) -> MacdOutput
fn clone(&self) -> MacdOutput
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 MacdOutput
impl Debug for MacdOutput
Source§impl<'de> Deserialize<'de> for MacdOutput
impl<'de> Deserialize<'de> for MacdOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MacdOutput
impl PartialEq for MacdOutput
Source§impl Serialize for MacdOutput
impl Serialize for MacdOutput
impl Copy for MacdOutput
impl StructuralPartialEq for MacdOutput
Auto Trait Implementations§
impl Freeze for MacdOutput
impl RefUnwindSafe for MacdOutput
impl Send for MacdOutput
impl Sync for MacdOutput
impl Unpin for MacdOutput
impl UnsafeUnpin for MacdOutput
impl UnwindSafe for MacdOutput
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