pub struct TechnicalIndicators {
pub data: Option<HashMap<String, TechnicalIndicatorsDataValue>>,
pub status: Option<String>,
}Fields§
§data: Option<HashMap<String, TechnicalIndicatorsDataValue>>Map of technical indicators available at Twelve Data API
status: Option<String>Response status
Implementations§
Source§impl TechnicalIndicators
impl TechnicalIndicators
pub fn new() -> TechnicalIndicators
Trait Implementations§
Source§impl Clone for TechnicalIndicators
impl Clone for TechnicalIndicators
Source§fn clone(&self) -> TechnicalIndicators
fn clone(&self) -> TechnicalIndicators
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 TechnicalIndicators
impl Debug for TechnicalIndicators
Source§impl Default for TechnicalIndicators
impl Default for TechnicalIndicators
Source§fn default() -> TechnicalIndicators
fn default() -> TechnicalIndicators
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TechnicalIndicators
impl<'de> Deserialize<'de> for TechnicalIndicators
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 TechnicalIndicators
impl PartialEq for TechnicalIndicators
Source§impl Serialize for TechnicalIndicators
impl Serialize for TechnicalIndicators
impl StructuralPartialEq for TechnicalIndicators
Auto Trait Implementations§
impl Freeze for TechnicalIndicators
impl RefUnwindSafe for TechnicalIndicators
impl Send for TechnicalIndicators
impl Sync for TechnicalIndicators
impl Unpin for TechnicalIndicators
impl UnwindSafe for TechnicalIndicators
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