[][src]Struct async_raft::metrics::RaftMetrics

pub struct RaftMetrics {
    pub id: NodeId,
    pub state: State,
    pub current_term: u64,
    pub last_log_index: u64,
    pub last_applied: u64,
    pub current_leader: Option<NodeId>,
    pub membership_config: MembershipConfig,
}

A set of metrics describing the current state of a Raft node.

Fields

id: NodeId

The ID of the Raft node.

state: State

The state of the Raft node.

current_term: u64

The current term of the Raft node.

last_log_index: u64

The last log index to be appended to this Raft node's log.

last_applied: u64

The last log index to be applied to this Raft node's state machine.

current_leader: Option<NodeId>

The current cluster leader.

membership_config: MembershipConfig

The current membership config of the cluster.

Trait Implementations

impl Clone for RaftMetrics[src]

impl Debug for RaftMetrics[src]

impl<'de> Deserialize<'de> for RaftMetrics[src]

impl Eq for RaftMetrics[src]

impl PartialEq<RaftMetrics> for RaftMetrics[src]

impl Serialize for RaftMetrics[src]

impl StructuralEq for RaftMetrics[src]

impl StructuralPartialEq for RaftMetrics[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<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]