pub struct GetBlockStatsCommandWithAllStatsResponse {Show 29 fields
pub avgfee: u64,
pub avgfeerate: u64,
pub avgtxsize: u64,
pub blockhash: String,
pub feerate_percentiles: [u64; 5],
pub height: u64,
pub ins: u64,
pub maxfee: u64,
pub maxfeerate: u64,
pub maxtxsize: u64,
pub medianfee: u64,
pub mediantime: u64,
pub mediantxsize: u64,
pub minfee: u64,
pub minfeerate: u64,
pub mintxsize: u64,
pub outs: u64,
pub subsidy: u64,
pub swtotal_size: u64,
pub swtotal_weight: u64,
pub swtxs: u64,
pub time: u64,
pub total_out: u64,
pub total_size: u64,
pub total_weight: u64,
pub totalfee: u64,
pub txs: u64,
pub utxo_increase: i64,
pub utxo_size_inc: i64,
}
Fields§
§avgfee: u64
§avgfeerate: u64
§avgtxsize: u64
§blockhash: String
§feerate_percentiles: [u64; 5]
§height: u64
§ins: u64
§maxfee: u64
§maxfeerate: u64
§maxtxsize: u64
§medianfee: u64
§mediantime: u64
§mediantxsize: u64
§minfee: u64
§minfeerate: u64
§mintxsize: u64
§outs: u64
§subsidy: u64
§swtotal_size: u64
§swtotal_weight: u64
§swtxs: u64
§time: u64
§total_out: u64
§total_size: u64
§total_weight: u64
§totalfee: u64
§txs: u64
§utxo_increase: i64
§utxo_size_inc: i64
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GetBlockStatsCommandWithAllStatsResponse
impl<'de> Deserialize<'de> for GetBlockStatsCommandWithAllStatsResponse
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 GetBlockStatsCommandWithAllStatsResponse
impl RefUnwindSafe for GetBlockStatsCommandWithAllStatsResponse
impl Send for GetBlockStatsCommandWithAllStatsResponse
impl Sync for GetBlockStatsCommandWithAllStatsResponse
impl Unpin for GetBlockStatsCommandWithAllStatsResponse
impl UnwindSafe for GetBlockStatsCommandWithAllStatsResponse
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