[][src]Struct raft::storage::RaftState

pub struct RaftState {
    pub hard_state: HardState,
    pub conf_state: ConfState,
    // some fields omitted
}

Holds both the hard state (commit index, vote leader, term) and the configuration state (Current node IDs)

Fields

hard_state: HardState

Contains the last meta information including commit index, the vote leader, and the vote term.

conf_state: ConfState

Records the current node IDs like [1, 2, 3] in the cluster. Every Raft node must have a unique ID in the cluster;

Methods

impl RaftState[src]

pub fn pending_conf_state(&self) -> &Option<ConfState>[src]

If this peer is in the middle of a membership change (The period between BeginMembershipChange and FinalizeMembershipChange) this will hold the final desired state.

pub fn pending_conf_state_start_index(&self) -> &Option<u64>[src]

If pending_conf_state exists this will contain the index of the BeginMembershipChange entry.

Trait Implementations

impl Clone for RaftState[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for RaftState[src]

Auto Trait Implementations

impl Send for RaftState

impl Sync for RaftState

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.