[−][src]Struct sync15::telemetry::EngineIncoming
Incoming record for an engine's sync
Fields
applied: u32
failed: u32
new_failed: u32
reconciled: 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]
fn default() -> EngineIncoming
[src]
impl Serialize for EngineIncoming
[src]
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
[src]
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,