pub struct EthProtocolInfo {
pub network: u64,
pub difficulty: U256,
pub genesis: B256,
pub config: ChainConfig,
pub head: B256,
}
Expand description
Represents a short summary of the eth
sub-protocol metadata known about the host peer.
See geth’s NodeInfo
struct
for how these fields are determined.
Fields§
§network: u64
The eth network version.
difficulty: U256
The total difficulty of the host’s blockchain.
genesis: B256
The Keccak hash of the host’s genesis block.
config: ChainConfig
The chain configuration for the host’s fork rules.
head: B256
The hash of the host’s best known block.
Trait Implementations§
Source§impl Clone for EthProtocolInfo
impl Clone for EthProtocolInfo
Source§fn clone(&self) -> EthProtocolInfo
fn clone(&self) -> EthProtocolInfo
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EthProtocolInfo
impl Debug for EthProtocolInfo
Source§impl<'de> Deserialize<'de> for EthProtocolInfo
impl<'de> Deserialize<'de> for EthProtocolInfo
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
Source§impl PartialEq for EthProtocolInfo
impl PartialEq for EthProtocolInfo
Source§impl Serialize for EthProtocolInfo
impl Serialize for EthProtocolInfo
impl Eq for EthProtocolInfo
impl StructuralPartialEq for EthProtocolInfo
Auto Trait Implementations§
impl Freeze for EthProtocolInfo
impl RefUnwindSafe for EthProtocolInfo
impl Send for EthProtocolInfo
impl Sync for EthProtocolInfo
impl Unpin for EthProtocolInfo
impl UnwindSafe for EthProtocolInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)