[][src]Struct nebula_fbthrift_raftex_v2::types::AppendLogRequest

pub struct AppendLogRequest {
    pub space: GraphSpaceID,
    pub part: PartitionID,
    pub current_term: TermID,
    pub last_log_id: LogID,
    pub committed_log_id: LogID,
    pub leader_addr: String,
    pub leader_port: Port,
    pub last_log_term_sent: TermID,
    pub last_log_id_sent: LogID,
    pub log_term: TermID,
    pub log_str_list: Vec<LogEntry>,
    pub sending_snapshot: bool,
}

Fields

space: GraphSpaceIDpart: PartitionIDcurrent_term: TermIDlast_log_id: LogIDcommitted_log_id: LogIDleader_addr: Stringleader_port: Portlast_log_term_sent: TermIDlast_log_id_sent: LogIDlog_term: TermIDlog_str_list: Vec<LogEntry>sending_snapshot: bool

Trait Implementations

impl Clone for AppendLogRequest[src]

impl Debug for AppendLogRequest[src]

impl Default for AppendLogRequest[src]

impl<P> Deserialize<P> for AppendLogRequest where
    P: ProtocolReader
[src]

impl GetTType for AppendLogRequest[src]

impl PartialEq<AppendLogRequest> for AppendLogRequest[src]

impl Send for AppendLogRequest[src]

impl<P> Serialize<P> for AppendLogRequest where
    P: ProtocolWriter
[src]

impl StructuralPartialEq for AppendLogRequest[src]

impl Sync for AppendLogRequest[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> 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.