pub struct TechnicalIndicatorsDataValue {
pub enable: Option<bool>,
pub full_name: Option<String>,
pub description: Option<String>,
pub type: Option<String>,
pub overlay: Option<bool>,
pub output_values: Option<Box<TechnicalIndicatorsResponseMacdOutputValues>>,
pub parameters: Option<Box<TechnicalIndicatorsResponseMacdParameters>>,
pub tinting: Option<Box<TechnicalIndicatorsResponseMacdTinting>>,
}Fields§
§enable: Option<bool>If the indicator is tested, approved and is recommended for use returns true, otherwise returns false
full_name: Option<String>Full indicator name
description: Option<String>Brief description of the indicator
type: Option<String>Group to which indicator belongs to
overlay: Option<bool>If indicator should be plotted over price bars returns true, otherwise returns false
output_values: Option<Box<TechnicalIndicatorsResponseMacdOutputValues>>§parameters: Option<Box<TechnicalIndicatorsResponseMacdParameters>>§tinting: Option<Box<TechnicalIndicatorsResponseMacdTinting>>Implementations§
Source§impl TechnicalIndicatorsDataValue
impl TechnicalIndicatorsDataValue
pub fn new() -> TechnicalIndicatorsDataValue
Trait Implementations§
Source§impl Clone for TechnicalIndicatorsDataValue
impl Clone for TechnicalIndicatorsDataValue
Source§fn clone(&self) -> TechnicalIndicatorsDataValue
fn clone(&self) -> TechnicalIndicatorsDataValue
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 TechnicalIndicatorsDataValue
impl Debug for TechnicalIndicatorsDataValue
Source§impl Default for TechnicalIndicatorsDataValue
impl Default for TechnicalIndicatorsDataValue
Source§fn default() -> TechnicalIndicatorsDataValue
fn default() -> TechnicalIndicatorsDataValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TechnicalIndicatorsDataValue
impl<'de> Deserialize<'de> for TechnicalIndicatorsDataValue
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 TechnicalIndicatorsDataValue
impl PartialEq for TechnicalIndicatorsDataValue
Source§fn eq(&self, other: &TechnicalIndicatorsDataValue) -> bool
fn eq(&self, other: &TechnicalIndicatorsDataValue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TechnicalIndicatorsDataValue
Auto Trait Implementations§
impl Freeze for TechnicalIndicatorsDataValue
impl RefUnwindSafe for TechnicalIndicatorsDataValue
impl Send for TechnicalIndicatorsDataValue
impl Sync for TechnicalIndicatorsDataValue
impl Unpin for TechnicalIndicatorsDataValue
impl UnwindSafe for TechnicalIndicatorsDataValue
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