pub struct ReactiveProcessorHealth {Show 20 fields
pub processor_name: String,
pub enabled: bool,
pub running: bool,
pub checkpoint_seq: u64,
pub head_seq: u64,
pub lag_commits: u64,
pub runs_total: u64,
pub processed_events_total: u64,
pub failures_total: u64,
pub retries_total: u64,
pub dead_lettered_total: u64,
pub last_processed_seq: u64,
pub last_error: Option<String>,
pub last_run_started_micros: Option<u64>,
pub last_run_completed_micros: Option<u64>,
pub last_success_micros: Option<u64>,
pub last_failure_micros: Option<u64>,
pub last_retry_micros: Option<u64>,
pub last_sleep_ms: u64,
pub last_batch_events: u64,
}Fields§
§processor_name: String§enabled: bool§running: bool§checkpoint_seq: u64§head_seq: u64§lag_commits: u64§runs_total: u64§processed_events_total: u64§failures_total: u64§retries_total: u64§dead_lettered_total: u64§last_processed_seq: u64§last_error: Option<String>§last_run_started_micros: Option<u64>§last_run_completed_micros: Option<u64>§last_success_micros: Option<u64>§last_failure_micros: Option<u64>§last_retry_micros: Option<u64>§last_sleep_ms: u64§last_batch_events: u64Trait Implementations§
Source§impl Clone for ReactiveProcessorHealth
impl Clone for ReactiveProcessorHealth
Source§fn clone(&self) -> ReactiveProcessorHealth
fn clone(&self) -> ReactiveProcessorHealth
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReactiveProcessorHealth
impl Debug for ReactiveProcessorHealth
Source§impl PartialEq for ReactiveProcessorHealth
impl PartialEq for ReactiveProcessorHealth
Source§fn eq(&self, other: &ReactiveProcessorHealth) -> bool
fn eq(&self, other: &ReactiveProcessorHealth) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ReactiveProcessorHealth
impl StructuralPartialEq for ReactiveProcessorHealth
Auto Trait Implementations§
impl Freeze for ReactiveProcessorHealth
impl RefUnwindSafe for ReactiveProcessorHealth
impl Send for ReactiveProcessorHealth
impl Sync for ReactiveProcessorHealth
impl Unpin for ReactiveProcessorHealth
impl UnsafeUnpin for ReactiveProcessorHealth
impl UnwindSafe for ReactiveProcessorHealth
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