pub struct CandleItem {
pub close: Option<String>,
pub epoch: Option<DateTime<Utc>>,
pub high: Option<String>,
pub low: Option<String>,
pub open: Option<String>,
}
Fields§
§close: Option<String>
It is the close price value for the given time\n
epoch: Option<DateTime<Utc>>
It is an epoch value\n
high: Option<String>
It is the high price value for the given time\n
low: Option<String>
It is the low price value for the given time\n
open: Option<String>
It is the open price value for the given time\n
Trait Implementations§
Source§impl Clone for CandleItem
impl Clone for CandleItem
Source§fn clone(&self) -> CandleItem
fn clone(&self) -> CandleItem
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 CandleItem
impl Debug for CandleItem
Source§impl<'de> Deserialize<'de> for CandleItem
impl<'de> Deserialize<'de> for CandleItem
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 CandleItem
impl RefUnwindSafe for CandleItem
impl Send for CandleItem
impl Sync for CandleItem
impl Unpin for CandleItem
impl UnwindSafe for CandleItem
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