[][src]Struct sync15::telemetry::EngineIncoming

pub struct EngineIncoming {
    applied: u32,
    failed: u32,
    new_failed: u32,
    reconciled: u32,
}

Incoming record for an engine's sync

Fields

applied: u32failed: u32new_failed: u32reconciled: u32

Implementations

impl EngineIncoming[src]

pub fn new() -> EngineIncoming[src]

pub fn applied(&mut self, n: u32)[src]

Increment the value of applied by n.

pub fn failed(&mut self, n: u32)[src]

Increment the value of failed by n.

pub fn new_failed(&mut self, n: u32)[src]

Increment the value of new_failed by n.

pub fn reconciled(&mut self, n: u32)[src]

Increment the value of reconciled by n.

pub fn get_applied(&self) -> u32[src]

Get the value of applied. Mostly useful for testing.

pub fn get_failed(&self) -> u32[src]

Get the value of failed. Mostly useful for testing.

pub fn get_new_failed(&self) -> u32[src]

Get the value of new_failed. Mostly useful for testing.

pub fn get_reconciled(&self) -> u32[src]

Get the value of reconciled. Mostly useful for testing.

Trait Implementations

impl Debug for EngineIncoming[src]

impl Default for EngineIncoming[src]

impl Serialize for EngineIncoming[src]

Auto Trait Implementations

impl RefUnwindSafe for EngineIncoming

impl Send for EngineIncoming

impl Sync for EngineIncoming

impl Unpin for EngineIncoming

impl UnwindSafe for EngineIncoming

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