pub struct ContractMonthMaxPrice {
pub contract_id: String,
pub open: String,
pub close: String,
pub high: String,
pub high_date: String,
pub low: String,
pub low_date: String,
pub clear_price: String,
}Expand description
Contract monthly max - Price statistics.
Fields§
§contract_id: StringContract ID.
open: StringOpening price at period start.
close: StringClosing price at period end.
high: StringHighest price.
high_date: StringDate of highest price.
low: StringLowest price.
low_date: StringDate of lowest price.
clear_price: StringSettlement price at period end.
Trait Implementations§
Source§impl Clone for ContractMonthMaxPrice
impl Clone for ContractMonthMaxPrice
Source§fn clone(&self) -> ContractMonthMaxPrice
fn clone(&self) -> ContractMonthMaxPrice
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 ContractMonthMaxPrice
impl Debug for ContractMonthMaxPrice
Source§impl<'de> Deserialize<'de> for ContractMonthMaxPrice
impl<'de> Deserialize<'de> for ContractMonthMaxPrice
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 ContractMonthMaxPrice
impl RefUnwindSafe for ContractMonthMaxPrice
impl Send for ContractMonthMaxPrice
impl Sync for ContractMonthMaxPrice
impl Unpin for ContractMonthMaxPrice
impl UnwindSafe for ContractMonthMaxPrice
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