pub struct Klines {
pub category: String,
pub symbol: String,
pub list: Vec<Vec<String>>,
}Expand description
Kline response.
Fields§
§category: StringCategory
symbol: StringSymbol
list: Vec<Vec<String>>List of klines [timestamp, open, high, low, close, volume, turnover]
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Klines
impl<'de> Deserialize<'de> for Klines
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 Klines
impl RefUnwindSafe for Klines
impl Send for Klines
impl Sync for Klines
impl Unpin for Klines
impl UnsafeUnpin for Klines
impl UnwindSafe for Klines
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