Struct fluvio::metadata::store::EpochChanges[]

pub struct EpochChanges<V> {
    pub epoch: i64,
    // some fields omitted
}

Fields

epoch: i64

Implementations

impl<V> EpochChanges<V>

pub fn new(epoch: i64, changes: EpochDeltaChanges<V>) -> EpochChanges<V>

pub fn current_epoch(&self) -> &i64

current epoch

pub fn parts(self) -> (Vec<V, Global>, Vec<V, Global>)

return all updates regardless of sync or changes (update,deletes)

pub fn is_empty(&self) -> bool

pub fn is_sync_all(&self) -> bool

is change contain sync all

Trait Implementations

impl<V> Debug for EpochChanges<V>

Auto Trait Implementations

impl<V> RefUnwindSafe for EpochChanges<V> where
    V: RefUnwindSafe
[src]

impl<V> Send for EpochChanges<V> where
    V: Send
[src]

impl<V> Sync for EpochChanges<V> where
    V: Sync
[src]

impl<V> Unpin for EpochChanges<V> where
    V: Unpin
[src]

impl<V> UnwindSafe for EpochChanges<V> where
    V: UnwindSafe
[src]

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, 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]