pub struct ServiceRecoveryReport {
pub metadata: ApiMetadata,
pub graph_version: u64,
pub stale_index_kinds: Vec<IndexKind>,
pub refreshed_index_kinds: Vec<IndexKind>,
pub index_lag_max: u64,
pub task_queue_depth: usize,
pub dead_letter_count: usize,
pub heartbeat_state: String,
}Expand description
Startup recovery report for resident service mode.
Fields§
§metadata: ApiMetadata§graph_version: u64§stale_index_kinds: Vec<IndexKind>§refreshed_index_kinds: Vec<IndexKind>§index_lag_max: u64§task_queue_depth: usize§dead_letter_count: usize§heartbeat_state: StringTrait Implementations§
Source§impl Clone for ServiceRecoveryReport
impl Clone for ServiceRecoveryReport
Source§fn clone(&self) -> ServiceRecoveryReport
fn clone(&self) -> ServiceRecoveryReport
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 ServiceRecoveryReport
impl Debug for ServiceRecoveryReport
Source§impl<'de> Deserialize<'de> for ServiceRecoveryReport
impl<'de> Deserialize<'de> for ServiceRecoveryReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ServiceRecoveryReport
impl PartialEq for ServiceRecoveryReport
Source§fn eq(&self, other: &ServiceRecoveryReport) -> bool
fn eq(&self, other: &ServiceRecoveryReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ServiceRecoveryReport
impl Serialize for ServiceRecoveryReport
impl Eq for ServiceRecoveryReport
impl StructuralPartialEq for ServiceRecoveryReport
Auto Trait Implementations§
impl Freeze for ServiceRecoveryReport
impl RefUnwindSafe for ServiceRecoveryReport
impl Send for ServiceRecoveryReport
impl Sync for ServiceRecoveryReport
impl Unpin for ServiceRecoveryReport
impl UnsafeUnpin for ServiceRecoveryReport
impl UnwindSafe for ServiceRecoveryReport
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