pub struct ContactInfo {
Show 13 fields pub id: Pubkey, pub gossip: SocketAddr, pub tvu: SocketAddr, pub tvu_forwards: SocketAddr, pub repair: SocketAddr, pub tpu: SocketAddr, pub tpu_forwards: SocketAddr, pub tpu_vote: SocketAddr, pub rpc: SocketAddr, pub rpc_pubsub: SocketAddr, pub serve_repair: SocketAddr, pub wallclock: u64, pub shred_version: u16,
}
Expand description

Structure representing a node on the network

Fields

id: Pubkeygossip: SocketAddr

gossip address

tvu: SocketAddr

address to connect to for replication

tvu_forwards: SocketAddr

address to forward shreds to

repair: SocketAddr

address to send repair responses to

tpu: SocketAddr

transactions address

tpu_forwards: SocketAddr

address to forward unprocessed transactions to

tpu_vote: SocketAddr

address to which to send bank state requests

rpc: SocketAddr

address to which to send JSON-RPC requests

rpc_pubsub: SocketAddr

websocket for JSON-RPC push notifications

serve_repair: SocketAddr

address to send repair requests to

wallclock: u64

latest wallclock picked

shred_version: u16

node shred version

Implementations

New random ContactInfo for tests and simulations.

source

pub fn new_gossip_entry_point(gossip_addr: &SocketAddr) -> Self

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
source

fn get_entry(
    table: &'a IndexMap<CrdsValueLabel, VersionedCrdsValue>,
    key: Self::Key
) -> Option<Self>

Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
This method returns an Ordering between self and other. Read more
Compares and returns the maximum of two values. Read more
Compares and returns the minimum of two values. Read more
Restrict a value to a certain interval. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
This method tests greater than or equal to (for self and other) and is used by the >= operator. 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
Compare self to key and return true if they are equal.

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

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

Wrap the input message T in a tonic::Request
The alignment of pointer.
The type for initializers.
Initializes a with the given initializer. Read more
Dereferences the given pointer. Read more
Mutably dereferences the given pointer. Read more
Drops the object pointed to by the given pointer. Read more
Should always be Self
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
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.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more