pub struct Stats {Show 28 fields
pub bitcoin_price: FetchStatus<f64>,
pub block_height: FetchStatus<u64>,
pub last_block_time: u64,
pub average_block_time: u64,
pub seconds_since_last_block: FetchStatus<u64>,
pub transactions_count_over_last_30_days: FetchStatus<u64>,
pub average_block_time_for_last_2016_blocks: FetchStatus<u64>,
pub chain_size: FetchStatus<u64>,
pub utxo_set_size: FetchStatus<u64>,
pub total_money_supply: FetchStatus<f64>,
pub total_transactions_count: FetchStatus<u64>,
pub tps_for_last_30_days: FetchStatus<f64>,
pub total_fees_for_last_24_hours: FetchStatus<u64>,
pub difficulty: FetchStatus<f64>,
pub current_difficulty_epoch: FetchStatus<u64>,
pub block_count_until_retarget: FetchStatus<f64>,
pub estimated_seconds_until_retarget: FetchStatus<f64>,
pub average_block_time_since_last_difficulty_adjustement: FetchStatus<u64>,
pub estimated_hash_rate_per_second_for_last_2016_blocks: FetchStatus<f64>,
pub block_subsidy_of_most_recent_block: FetchStatus<u64>,
pub blocks_mined_over_last_24_hours: FetchStatus<u64>,
pub average_fees_per_block_over_last_24_hours: FetchStatus<u64>,
pub average_fees_per_block_over_last_2016_blocks: FetchStatus<u64>,
pub fees_as_a_percent_of_reward_for_last_2016_blocks: FetchStatus<f64>,
pub fees_as_a_percent_of_reward_for_last_24_hours: FetchStatus<f64>,
pub segwit_percent_last_24_hours: FetchStatus<f64>,
pub segwit_spending_payments_percent_last_24_hours: FetchStatus<f64>,
pub segwit_spending_transactions_percent_last_24_hours: FetchStatus<f64>,
}Fields§
§bitcoin_price: FetchStatus<f64>§block_height: FetchStatus<u64>§last_block_time: u64§average_block_time: u64§seconds_since_last_block: FetchStatus<u64>§transactions_count_over_last_30_days: FetchStatus<u64>§average_block_time_for_last_2016_blocks: FetchStatus<u64>§chain_size: FetchStatus<u64>§utxo_set_size: FetchStatus<u64>§total_money_supply: FetchStatus<f64>§total_transactions_count: FetchStatus<u64>§tps_for_last_30_days: FetchStatus<f64>§total_fees_for_last_24_hours: FetchStatus<u64>§difficulty: FetchStatus<f64>§current_difficulty_epoch: FetchStatus<u64>§block_count_until_retarget: FetchStatus<f64>§estimated_seconds_until_retarget: FetchStatus<f64>§average_block_time_since_last_difficulty_adjustement: FetchStatus<u64>§estimated_hash_rate_per_second_for_last_2016_blocks: FetchStatus<f64>§block_subsidy_of_most_recent_block: FetchStatus<u64>§blocks_mined_over_last_24_hours: FetchStatus<u64>§average_fees_per_block_over_last_24_hours: FetchStatus<u64>§average_fees_per_block_over_last_2016_blocks: FetchStatus<u64>§fees_as_a_percent_of_reward_for_last_2016_blocks: FetchStatus<f64>§fees_as_a_percent_of_reward_for_last_24_hours: FetchStatus<f64>§segwit_percent_last_24_hours: FetchStatus<f64>§segwit_spending_payments_percent_last_24_hours: FetchStatus<f64>§segwit_spending_transactions_percent_last_24_hours: FetchStatus<f64>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Stats
impl RefUnwindSafe for Stats
impl Send for Stats
impl Sync for Stats
impl Unpin for Stats
impl UnwindSafe for Stats
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