pub struct ContractMonthMaxVolume {
pub contract_id: String,
pub sum_amount: i64,
pub max_amount: i64,
pub max_amount_date: String,
pub min_amount: i64,
pub min_amount_date: String,
pub avg_amount: i64,
}Expand description
Contract monthly max - Volume statistics.
Fields§
§contract_id: StringContract ID.
sum_amount: i64Total volume.
max_amount: i64Maximum volume.
max_amount_date: StringDate of maximum volume.
min_amount: i64Minimum volume.
min_amount_date: StringDate of minimum volume.
avg_amount: i64Average daily volume.
Trait Implementations§
Source§impl Clone for ContractMonthMaxVolume
impl Clone for ContractMonthMaxVolume
Source§fn clone(&self) -> ContractMonthMaxVolume
fn clone(&self) -> ContractMonthMaxVolume
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 ContractMonthMaxVolume
impl Debug for ContractMonthMaxVolume
Source§impl<'de> Deserialize<'de> for ContractMonthMaxVolume
impl<'de> Deserialize<'de> for ContractMonthMaxVolume
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 ContractMonthMaxVolume
impl RefUnwindSafe for ContractMonthMaxVolume
impl Send for ContractMonthMaxVolume
impl Sync for ContractMonthMaxVolume
impl Unpin for ContractMonthMaxVolume
impl UnwindSafe for ContractMonthMaxVolume
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