pub struct TradeChartNotification {
pub close: f64,
pub cost: f64,
pub high: f64,
pub low: f64,
pub open: f64,
pub tick: i64,
pub volume: f64,
}Fields§
§close: f64§cost: f64§high: f64§low: f64§open: f64§tick: i64§volume: f64Trait Implementations§
Source§impl Clone for TradeChartNotification
impl Clone for TradeChartNotification
Source§fn clone(&self) -> TradeChartNotification
fn clone(&self) -> TradeChartNotification
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 TradeChartNotification
impl Debug for TradeChartNotification
Source§impl Default for TradeChartNotification
impl Default for TradeChartNotification
Source§fn default() -> TradeChartNotification
fn default() -> TradeChartNotification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TradeChartNotification
impl<'de> Deserialize<'de> for TradeChartNotification
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 TradeChartNotification
impl PartialEq for TradeChartNotification
Source§impl Serialize for TradeChartNotification
impl Serialize for TradeChartNotification
impl StructuralPartialEq for TradeChartNotification
Auto Trait Implementations§
impl Freeze for TradeChartNotification
impl RefUnwindSafe for TradeChartNotification
impl Send for TradeChartNotification
impl Sync for TradeChartNotification
impl Unpin for TradeChartNotification
impl UnwindSafe for TradeChartNotification
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