pub struct StreamMetrics {
pub events_decoded: u64,
pub events_skipped: u64,
pub decode_errors: u64,
pub reconnections: u64,
}Expand description
Metrics snapshot for the stream engine.
Fields§
§events_decoded: u64§events_skipped: u64§decode_errors: u64§reconnections: u64Trait Implementations§
Source§impl Clone for StreamMetrics
impl Clone for StreamMetrics
Source§fn clone(&self) -> StreamMetrics
fn clone(&self) -> StreamMetrics
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StreamMetrics
impl Debug for StreamMetrics
Source§impl Default for StreamMetrics
impl Default for StreamMetrics
Source§fn default() -> StreamMetrics
fn default() -> StreamMetrics
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StreamMetrics
impl RefUnwindSafe for StreamMetrics
impl Send for StreamMetrics
impl Sync for StreamMetrics
impl Unpin for StreamMetrics
impl UnsafeUnpin for StreamMetrics
impl UnwindSafe for StreamMetrics
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more