Struct etcd::members::Member [] [src]

pub struct Member {
    pub id: String,
    pub name: String,
    pub peer_urls: Vec<String>,
    pub client_urls: Vec<String>,
}

An etcd server that is a member of a cluster.

Fields

An internal identifier for the cluster member.

A human-readable name for the cluster member.

URLs exposing this cluster member's peer API.

URLs exposing this cluster member's client API.

Trait Implementations

impl Clone for Member
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Member
[src]

Formats the value using the given formatter.

impl Eq for Member
[src]

impl Hash for Member
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for Member
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.