pub struct TvHistoryResponse {
pub time: Vec<u64>,
pub open: Vec<f64>,
pub high: Vec<f64>,
pub low: Vec<f64>,
pub close: Vec<f64>,
pub volume: Vec<f64>,
pub status: String,
pub next_time: Option<u64>,
}Fields§
§time: Vec<u64>§open: Vec<f64>§high: Vec<f64>§low: Vec<f64>§close: Vec<f64>§volume: Vec<f64>§status: String§next_time: Option<u64>Trait Implementations§
Source§impl Debug for TvHistoryResponse
impl Debug for TvHistoryResponse
Source§impl<'de> Deserialize<'de> for TvHistoryResponse
impl<'de> Deserialize<'de> for TvHistoryResponse
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
Auto Trait Implementations§
impl Freeze for TvHistoryResponse
impl RefUnwindSafe for TvHistoryResponse
impl Send for TvHistoryResponse
impl Sync for TvHistoryResponse
impl Unpin for TvHistoryResponse
impl UnsafeUnpin for TvHistoryResponse
impl UnwindSafe for TvHistoryResponse
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