Struct raft::Progress[][src]

pub struct Progress {
    pub matched: u64,
    pub next_idx: u64,
    pub state: ProgressState,
    pub paused: bool,
    pub pending_snapshot: u64,
    pub recent_active: bool,
    pub ins: Inflights,
    pub is_learner: bool,
}

Fields

Methods

impl Progress
[src]

Trait Implementations

impl Debug for Progress
[src]

Formats the value using the given formatter. Read more

impl Default for Progress
[src]

Returns the "default value" for a type. Read more

impl Clone for Progress
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Progress

impl Sync for Progress