pub struct ResilienceHealthStatus {
pub overall_health: HealthLevel,
pub circuit_breakers_open: u32,
pub services_degraded: u32,
pub last_updated: SystemTime,
}Expand description
Overall health status of the resilience system
Fields§
§overall_health: HealthLevel§circuit_breakers_open: u32§services_degraded: u32§last_updated: SystemTimeTrait Implementations§
Source§impl Clone for ResilienceHealthStatus
impl Clone for ResilienceHealthStatus
Source§fn clone(&self) -> ResilienceHealthStatus
fn clone(&self) -> ResilienceHealthStatus
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 moreAuto Trait Implementations§
impl Freeze for ResilienceHealthStatus
impl RefUnwindSafe for ResilienceHealthStatus
impl Send for ResilienceHealthStatus
impl Sync for ResilienceHealthStatus
impl Unpin for ResilienceHealthStatus
impl UnsafeUnpin for ResilienceHealthStatus
impl UnwindSafe for ResilienceHealthStatus
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