[][src]Struct etcd_client::Member

#[repr(transparent)]pub struct Member(_);

Cluster member.

Implementations

impl Member[src]

pub const fn id(&self) -> u64[src]

Member id.

pub fn name(&self) -> &str[src]

The human-readable name of the member. If the member is not started, the name will be an empty string.

pub fn peer_urls(&self) -> &[String][src]

The list of URLs the member exposes to the cluster for communication.

pub fn client_urls(&self) -> &[String][src]

The list of URLs the member exposes to clients for communication. If the member is not started, client URLs will be empty.

pub const fn is_learner(&self) -> bool[src]

Indicates if the member is raft learner.

Trait Implementations

impl Clone for Member[src]

impl Debug for Member[src]

impl PartialEq<Member> for Member[src]

impl StructuralPartialEq for Member[src]

Auto Trait Implementations

impl RefUnwindSafe for Member

impl Send for Member

impl Sync for Member

impl Unpin for Member

impl UnwindSafe for Member

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]