GetBlockStatsCommandWithSelectiveStatsResponse

Struct GetBlockStatsCommandWithSelectiveStatsResponse 

Source
pub struct GetBlockStatsCommandWithSelectiveStatsResponse {
Show 29 fields pub avgfee: Option<u64>, pub avgfeerate: Option<u64>, pub avgtxsize: Option<u64>, pub blockhash: Option<String>, pub feerate_percentiles: Option<[u64; 5]>, pub height: Option<u64>, pub ins: Option<u64>, pub maxfee: Option<u64>, pub maxfeerate: Option<u64>, pub maxtxsize: Option<u64>, pub medianfee: Option<u64>, pub mediantime: Option<u64>, pub mediantxsize: Option<u64>, pub minfee: Option<u64>, pub minfeerate: Option<u64>, pub mintxsize: Option<u64>, pub outs: Option<u64>, pub subsidy: Option<u64>, pub swtotal_size: Option<u64>, pub swtotal_weight: Option<u64>, pub swtxs: Option<u64>, pub time: Option<u64>, pub total_out: Option<u64>, pub total_size: Option<u64>, pub total_weight: Option<u64>, pub totalfee: Option<u64>, pub txs: Option<u64>, pub utxo_increase: Option<u64>, pub utxo_size_inc: Option<u64>,
}

Fields§

§avgfee: Option<u64>§avgfeerate: Option<u64>§avgtxsize: Option<u64>§blockhash: Option<String>§feerate_percentiles: Option<[u64; 5]>§height: Option<u64>§ins: Option<u64>§maxfee: Option<u64>§maxfeerate: Option<u64>§maxtxsize: Option<u64>§medianfee: Option<u64>§mediantime: Option<u64>§mediantxsize: Option<u64>§minfee: Option<u64>§minfeerate: Option<u64>§mintxsize: Option<u64>§outs: Option<u64>§subsidy: Option<u64>§swtotal_size: Option<u64>§swtotal_weight: Option<u64>§swtxs: Option<u64>§time: Option<u64>§total_out: Option<u64>§total_size: Option<u64>§total_weight: Option<u64>§totalfee: Option<u64>§txs: Option<u64>§utxo_increase: Option<u64>§utxo_size_inc: Option<u64>

Trait Implementations§

Source§

impl Debug for GetBlockStatsCommandWithSelectiveStatsResponse

Source§

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

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

impl<'de> Deserialize<'de> for GetBlockStatsCommandWithSelectiveStatsResponse

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 GetBlockStatsCommandWithSelectiveStatsResponse

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>,