pub enum Resource {
Show 26 variants
BitcoinPrice(FetchEvent<f64>),
NewBlockHeight(FetchEvent<u64>),
SecondsSinceLastBlock(FetchEvent<u64>),
TransactionsCountOverLast30Days(FetchEvent<u64>),
AverageBlockTimeForLast2016Blocks(FetchEvent<u64>),
ChainSize(FetchEvent<u64>),
UtxoSetSize(FetchEvent<u64>),
TotalMoneySupply(FetchEvent<f64>),
TotalTransactionCount(FetchEvent<u64>),
TpsForLast30Days(FetchEvent<f64>),
TotalFeesForLast24Hours(FetchEvent<u64>),
Difficulty(FetchEvent<f64>),
CurrentDifficultyEpoch(FetchEvent<u64>),
BlockCountUntilRetarget(FetchEvent<f64>),
EstimatedSecondsUntilRetarget(FetchEvent<f64>),
AverageBlockTimeSinceLastDifficultyAdjustment(FetchEvent<u64>),
EstimatedHashRatePerSecondForLast2016Blocks(FetchEvent<f64>),
BlockSubsidyOfMostRecentBlock(FetchEvent<u64>),
BlocksMinedOverLast24Hours(FetchEvent<u64>),
AverageFeesPerBlockOverLast24Hours(FetchEvent<u64>),
AverageFeesPerBlockOverLast2016Blocks(FetchEvent<u64>),
FeesAsAPercentOfRewardForLast2016Blocks(FetchEvent<f64>),
FeesAsAPercentOfRewardForLast24Hours(FetchEvent<f64>),
SegwitPercentLast24Hours(FetchEvent<f64>),
SegwitSpendingPaymentsPercentLast24Hours(FetchEvent<f64>),
SegwitSpendingTransactionsPercentLast24Hours(FetchEvent<f64>),
}Variants§
BitcoinPrice(FetchEvent<f64>)
NewBlockHeight(FetchEvent<u64>)
SecondsSinceLastBlock(FetchEvent<u64>)
TransactionsCountOverLast30Days(FetchEvent<u64>)
AverageBlockTimeForLast2016Blocks(FetchEvent<u64>)
ChainSize(FetchEvent<u64>)
UtxoSetSize(FetchEvent<u64>)
TotalMoneySupply(FetchEvent<f64>)
TotalTransactionCount(FetchEvent<u64>)
TpsForLast30Days(FetchEvent<f64>)
TotalFeesForLast24Hours(FetchEvent<u64>)
Difficulty(FetchEvent<f64>)
CurrentDifficultyEpoch(FetchEvent<u64>)
BlockCountUntilRetarget(FetchEvent<f64>)
EstimatedSecondsUntilRetarget(FetchEvent<f64>)
AverageBlockTimeSinceLastDifficultyAdjustment(FetchEvent<u64>)
EstimatedHashRatePerSecondForLast2016Blocks(FetchEvent<f64>)
BlockSubsidyOfMostRecentBlock(FetchEvent<u64>)
BlocksMinedOverLast24Hours(FetchEvent<u64>)
AverageFeesPerBlockOverLast24Hours(FetchEvent<u64>)
AverageFeesPerBlockOverLast2016Blocks(FetchEvent<u64>)
FeesAsAPercentOfRewardForLast2016Blocks(FetchEvent<f64>)
FeesAsAPercentOfRewardForLast24Hours(FetchEvent<f64>)
SegwitPercentLast24Hours(FetchEvent<f64>)
SegwitSpendingPaymentsPercentLast24Hours(FetchEvent<f64>)
SegwitSpendingTransactionsPercentLast24Hours(FetchEvent<f64>)
Auto Trait Implementations§
impl Freeze for Resource
impl RefUnwindSafe for Resource
impl Send for Resource
impl Sync for Resource
impl Unpin for Resource
impl UnwindSafe for Resource
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