GetBlockStatsCommandWithAllStatsResponse

Struct GetBlockStatsCommandWithAllStatsResponse 

Source
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 Debug for GetBlockStatsCommandWithAllStatsResponse

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for GetBlockStatsCommandWithAllStatsResponse

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for GetBlockStatsCommandWithAllStatsResponse

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,