[][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.

impl RaftState[src]

pub fn new(hard_state: HardState, conf_state: ConfState) -> RaftState[src]

Create a new RaftState.

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

Indicates the RaftState is initialized or not.

Trait Implementations

impl Default for RaftState[src]

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

Blanket Implementations

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> From<T> for T[src]

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

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