pub struct TechnicalIndicatorsResponseMacdTinting {
pub display: Option<String>,
pub color: Option<String>,
pub transparency: Option<f64>,
pub lower_bound: Option<Value>,
pub upper_bound: Option<Value>,
}Expand description
TechnicalIndicatorsResponseMacdTinting : An array of tinting values used for proper indicator coloring
Fields§
§display: Option<String>How the tinting should be rendered
color: Option<String>Hex color code for the tinting
transparency: Option<f64>Transparency level, float value from 0 to 1
lower_bound: Option<Value>Lower bound of tinting, can be a number or a return parameter name
upper_bound: Option<Value>Upper bound of tinting, can be a number or a return parameter name
Implementations§
Source§impl TechnicalIndicatorsResponseMacdTinting
impl TechnicalIndicatorsResponseMacdTinting
Sourcepub fn new() -> TechnicalIndicatorsResponseMacdTinting
pub fn new() -> TechnicalIndicatorsResponseMacdTinting
An array of tinting values used for proper indicator coloring
Trait Implementations§
Source§impl Clone for TechnicalIndicatorsResponseMacdTinting
impl Clone for TechnicalIndicatorsResponseMacdTinting
Source§fn clone(&self) -> TechnicalIndicatorsResponseMacdTinting
fn clone(&self) -> TechnicalIndicatorsResponseMacdTinting
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 Default for TechnicalIndicatorsResponseMacdTinting
impl Default for TechnicalIndicatorsResponseMacdTinting
Source§fn default() -> TechnicalIndicatorsResponseMacdTinting
fn default() -> TechnicalIndicatorsResponseMacdTinting
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TechnicalIndicatorsResponseMacdTinting
impl<'de> Deserialize<'de> for TechnicalIndicatorsResponseMacdTinting
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 TechnicalIndicatorsResponseMacdTinting
impl PartialEq for TechnicalIndicatorsResponseMacdTinting
Source§fn eq(&self, other: &TechnicalIndicatorsResponseMacdTinting) -> bool
fn eq(&self, other: &TechnicalIndicatorsResponseMacdTinting) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TechnicalIndicatorsResponseMacdTinting
Auto Trait Implementations§
impl Freeze for TechnicalIndicatorsResponseMacdTinting
impl RefUnwindSafe for TechnicalIndicatorsResponseMacdTinting
impl Send for TechnicalIndicatorsResponseMacdTinting
impl Sync for TechnicalIndicatorsResponseMacdTinting
impl Unpin for TechnicalIndicatorsResponseMacdTinting
impl UnwindSafe for TechnicalIndicatorsResponseMacdTinting
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