Struct fluvio_sc_schema::partition::ReplicaStatus[][src]

pub struct ReplicaStatus {
    pub spu: i32,
    pub hw: i64,
    pub leo: i64,
}

Fields

spu: i32hw: i64leo: i64

Implementations

impl ReplicaStatus[src]

pub fn new(spu: i32, hw: i64, leo: i64) -> ReplicaStatus[src]

pub fn leader_lag(&self, leader_status: &ReplicaStatus) -> i64[src]

compute lag score respect to leader

pub fn high_watermark_lag(&self, leader_status: &ReplicaStatus) -> i64[src]

pub fn merge(&mut self, source: &ReplicaStatus) -> Option<ReplicaStatus>[src]

merge status

Trait Implementations

impl Clone for ReplicaStatus[src]

impl Debug for ReplicaStatus[src]

impl Decoder for ReplicaStatus[src]

impl Default for ReplicaStatus[src]

impl Display for ReplicaStatus[src]

impl Encoder for ReplicaStatus[src]

impl From<(i32, i64, i64)> for ReplicaStatus[src]

impl PartialEq<ReplicaStatus> for ReplicaStatus[src]

impl StructuralPartialEq for ReplicaStatus[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> Instrument 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> ToString for T where
    T: Display + ?Sized
[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.