pub struct IcDailyStatsRow {
pub day: String,
pub timestamp_unix_secs: u64,
pub average_query_transactions_per_second: String,
pub average_update_transactions_per_second: String,
pub average_transactions_per_second: String,
pub max_query_transactions_per_second: String,
pub max_update_transactions_per_second: String,
pub max_total_transactions_per_second: String,
pub blocks_per_second_average: String,
}Expand description
IcDailyStatsRow
Selected raw daily network-activity values returned by the Dashboard API.
Fields§
§day: StringRaw UTC calendar day returned by the Dashboard.
timestamp_unix_secs: u64Observation timestamp as Unix seconds.
average_query_transactions_per_second: StringRaw average query-transaction rate.
average_update_transactions_per_second: StringRaw average update-transaction rate.
average_transactions_per_second: StringRaw average total-transaction rate.
max_query_transactions_per_second: StringRaw maximum query-transaction rate.
max_update_transactions_per_second: StringRaw maximum update-transaction rate.
max_total_transactions_per_second: StringRaw maximum total-transaction rate.
blocks_per_second_average: StringRaw average block-production rate.
Trait Implementations§
Source§impl Clone for IcDailyStatsRow
impl Clone for IcDailyStatsRow
Source§fn clone(&self) -> IcDailyStatsRow
fn clone(&self) -> IcDailyStatsRow
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 IcDailyStatsRow
impl Debug for IcDailyStatsRow
impl Eq for IcDailyStatsRow
Source§impl PartialEq for IcDailyStatsRow
impl PartialEq for IcDailyStatsRow
Source§impl Serialize for IcDailyStatsRow
impl Serialize for IcDailyStatsRow
impl StructuralPartialEq for IcDailyStatsRow
Auto Trait Implementations§
impl Freeze for IcDailyStatsRow
impl RefUnwindSafe for IcDailyStatsRow
impl Send for IcDailyStatsRow
impl Sync for IcDailyStatsRow
impl Unpin for IcDailyStatsRow
impl UnsafeUnpin for IcDailyStatsRow
impl UnwindSafe for IcDailyStatsRow
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