[][src]Struct actix_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,
}

Baseline metrics of the current state of the subject Raft node.

See the module level documentation for more details.

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 Eq for RaftMetrics[src]

impl Message for RaftMetrics[src]

type Result = ()

The type of value that this message will resolved with if it is successful. Read more

impl PartialEq<RaftMetrics> 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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> 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>,