pub struct NetworkStats {Show 17 fields
pub total_raw_byte_power: StoragePower,
pub total_bytes_committed: StoragePower,
pub total_quality_adj_power: StoragePower,
pub total_qa_bytes_committed: StoragePower,
pub total_pledge_collateral: TokenAmount,
pub this_epoch_raw_byte_power: StoragePower,
pub this_epoch_quality_adj_power: StoragePower,
pub this_epoch_pledge_collateral: TokenAmount,
pub miner_count: i64,
pub miner_above_min_power_count: i64,
pub this_epoch_reward: TokenAmount,
pub this_epoch_reward_smoothed: FilterEstimate,
pub this_epoch_baseline_power: StoragePower,
pub total_storage_power_reward: TokenAmount,
pub total_client_locked_collateral: TokenAmount,
pub total_provider_locked_collateral: TokenAmount,
pub total_client_storage_fee: TokenAmount,
}
Fields§
§total_raw_byte_power: StoragePower
§total_bytes_committed: StoragePower
§total_quality_adj_power: StoragePower
§total_qa_bytes_committed: StoragePower
§total_pledge_collateral: TokenAmount
§this_epoch_raw_byte_power: StoragePower
§this_epoch_quality_adj_power: StoragePower
§this_epoch_pledge_collateral: TokenAmount
§miner_count: i64
§miner_above_min_power_count: i64
§this_epoch_reward: TokenAmount
§this_epoch_reward_smoothed: FilterEstimate
§this_epoch_baseline_power: StoragePower
§total_storage_power_reward: TokenAmount
§total_client_locked_collateral: TokenAmount
§total_provider_locked_collateral: TokenAmount
§total_client_storage_fee: TokenAmount
Auto Trait Implementations§
impl Freeze for NetworkStats
impl RefUnwindSafe for NetworkStats
impl Send for NetworkStats
impl Sync for NetworkStats
impl Unpin for NetworkStats
impl UnwindSafe for NetworkStats
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more