[][src]Enum lol_core::core_message::Rep

pub enum Rep {
    ClusterInfo {
        leader_id: Option<Id>,
        membership: Vec<Id>,
    },
    LogInfo {
        snapshot_index: u64,
        last_applied: u64,
        commit_index: u64,
        last_log_index: u64,
    },
    HealthCheck {
        ok: bool,
    },
}

Reply

Variants

ClusterInfo

Fields of ClusterInfo

leader_id: Option<Id>membership: Vec<Id>
LogInfo

Fields of LogInfo

snapshot_index: u64last_applied: u64commit_index: u64last_log_index: u64
HealthCheck

Fields of HealthCheck

ok: bool

Implementations

impl Rep[src]

pub fn serialize(x: &Self) -> Vec<u8>[src]

pub fn deserialize(x: &[u8]) -> Option<Self>[src]

Trait Implementations

impl Debug for Rep[src]

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

impl Serialize for Rep[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> Instrument for T[src]

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

impl<T> IntoRequest<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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]