[][src]Struct async_raft::raft::VoteRequest

pub struct VoteRequest {
    pub term: u64,
    pub candidate_id: u64,
    pub last_log_index: u64,
    pub last_log_term: u64,
}

An RPC sent by candidates to gather votes (§5.2).

Fields

term: u64

The candidate's current term.

candidate_id: u64

The candidate's ID.

last_log_index: u64

The index of the candidate’s last log entry (§5.4).

last_log_term: u64

The term of the candidate’s last log entry (§5.4).

Implementations

impl VoteRequest[src]

pub fn new(
    term: u64,
    candidate_id: u64,
    last_log_index: u64,
    last_log_term: u64
) -> Self
[src]

Create a new instance.

Trait Implementations

impl Debug for VoteRequest[src]

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

impl Serialize for VoteRequest[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, U> Into<U> for T where
    U: From<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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]