pub struct ContractMonthMaxOpeni {
pub contract_id: String,
pub sum_openi: i64,
pub max_openi: i64,
pub max_openi_date: String,
pub min_openi: i64,
pub min_openi_date: String,
pub avg_openi: i64,
}Expand description
Contract monthly max - Open Interest statistics.
Fields§
§contract_id: StringContract ID.
sum_openi: i64Total open interest.
max_openi: i64Maximum open interest.
max_openi_date: StringDate of maximum open interest.
min_openi: i64Minimum open interest.
min_openi_date: StringDate of minimum open interest.
avg_openi: i64Average daily open interest.
Trait Implementations§
Source§impl Clone for ContractMonthMaxOpeni
impl Clone for ContractMonthMaxOpeni
Source§fn clone(&self) -> ContractMonthMaxOpeni
fn clone(&self) -> ContractMonthMaxOpeni
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 ContractMonthMaxOpeni
impl Debug for ContractMonthMaxOpeni
Source§impl<'de> Deserialize<'de> for ContractMonthMaxOpeni
impl<'de> Deserialize<'de> for ContractMonthMaxOpeni
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 ContractMonthMaxOpeni
impl RefUnwindSafe for ContractMonthMaxOpeni
impl Send for ContractMonthMaxOpeni
impl Sync for ContractMonthMaxOpeni
impl Unpin for ContractMonthMaxOpeni
impl UnwindSafe for ContractMonthMaxOpeni
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