[]Struct fluvio::metadata::partition::ReplicaStatus

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

Fields

spu: i32hw: i64leo: i64

Implementations

impl ReplicaStatus

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

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

compute lag score respect to leader

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

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

merge status

Trait Implementations

impl Clone for ReplicaStatus

impl Debug for ReplicaStatus

impl Decoder for ReplicaStatus

impl Default for ReplicaStatus

impl Display for ReplicaStatus

impl Encoder for ReplicaStatus

impl From<(i32, i64, i64)> for ReplicaStatus

impl PartialEq<ReplicaStatus> for ReplicaStatus

impl StructuralPartialEq for ReplicaStatus

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> Erased for T

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> 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.

impl<T> WithSubscriber for T[src]