pub struct PublicGetTradingviewChartDataResponse {
pub close: Option<Vec<f64>>,
pub cost: Option<Vec<f64>>,
pub high: Option<Vec<f64>>,
pub low: Option<Vec<f64>>,
pub open: Option<Vec<f64>>,
pub status: Option<PublicGetTradingviewChartDataResponseStatus>,
pub ticks: Option<Vec<i64>>,
pub volume: Option<Vec<f64>>,
}Fields§
§close: Option<Vec<f64>>§cost: Option<Vec<f64>>§high: Option<Vec<f64>>§low: Option<Vec<f64>>§open: Option<Vec<f64>>§status: Option<PublicGetTradingviewChartDataResponseStatus>§ticks: Option<Vec<i64>>§volume: Option<Vec<f64>>Trait Implementations§
Source§impl Clone for PublicGetTradingviewChartDataResponse
impl Clone for PublicGetTradingviewChartDataResponse
Source§fn clone(&self) -> PublicGetTradingviewChartDataResponse
fn clone(&self) -> PublicGetTradingviewChartDataResponse
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 PublicGetTradingviewChartDataResponse
impl Default for PublicGetTradingviewChartDataResponse
Source§fn default() -> PublicGetTradingviewChartDataResponse
fn default() -> PublicGetTradingviewChartDataResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PublicGetTradingviewChartDataResponse
impl<'de> Deserialize<'de> for PublicGetTradingviewChartDataResponse
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 PublicGetTradingviewChartDataResponse
impl PartialEq for PublicGetTradingviewChartDataResponse
Source§fn eq(&self, other: &PublicGetTradingviewChartDataResponse) -> bool
fn eq(&self, other: &PublicGetTradingviewChartDataResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PublicGetTradingviewChartDataResponse
Auto Trait Implementations§
impl Freeze for PublicGetTradingviewChartDataResponse
impl RefUnwindSafe for PublicGetTradingviewChartDataResponse
impl Send for PublicGetTradingviewChartDataResponse
impl Sync for PublicGetTradingviewChartDataResponse
impl Unpin for PublicGetTradingviewChartDataResponse
impl UnwindSafe for PublicGetTradingviewChartDataResponse
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