pub struct GetBlockchainInfoCommandResponse {
Show 16 fields pub chain: String, pub blocks: u64, pub headers: u64, pub bestblockhash: String, pub difficulty: f64, pub mediantime: u64, pub verificationprogress: f64, pub initialblockdownload: bool, pub chainwork: String, pub size_on_disk: u64, pub pruned: bool, pub pruneheight: Option<u64>, pub automatic_pruning: Option<bool>, pub prune_target_size: Option<u64>, pub softforks: HashMap<String, SoftFork>, pub warnings: String,
}

Fields

chain: Stringblocks: u64headers: u64bestblockhash: Stringdifficulty: f64mediantime: u64verificationprogress: f64initialblockdownload: boolchainwork: Stringsize_on_disk: u64pruned: boolpruneheight: Option<u64>automatic_pruning: Option<bool>prune_target_size: Option<u64>softforks: HashMap<String, SoftFork>warnings: String

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.