pub struct CxIndexPoint {
pub date: String,
pub value: f64,
pub change: f64,
}Expand description
CX / Caixin index time-series point.
Fields§
§date: String§value: f64§change: f64Trait Implementations§
Source§impl Clone for CxIndexPoint
impl Clone for CxIndexPoint
Source§fn clone(&self) -> CxIndexPoint
fn clone(&self) -> CxIndexPoint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CxIndexPoint
impl Debug for CxIndexPoint
Source§impl<'de> Deserialize<'de> for CxIndexPoint
impl<'de> Deserialize<'de> for CxIndexPoint
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 CxIndexPoint
impl RefUnwindSafe for CxIndexPoint
impl Send for CxIndexPoint
impl Sync for CxIndexPoint
impl Unpin for CxIndexPoint
impl UnsafeUnpin for CxIndexPoint
impl UnwindSafe for CxIndexPoint
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