pub struct BackendStatus {
pub namespace: String,
pub healthy: bool,
pub last_checked_at: Option<DateTime<Utc>>,
pub consecutive_failures: u32,
pub error: Option<String>,
pub transport: Option<String>,
}Expand description
Health status of a single backend, updated by the background health checker.
Fields§
§namespace: StringBackend namespace (e.g. “db/”).
healthy: boolWhether the backend responded to the last health check.
last_checked_at: Option<DateTime<Utc>>Timestamp of the last health check.
consecutive_failures: u32Number of consecutive failed health checks.
error: Option<String>Last error message from a failed health check.
transport: Option<String>Transport type (e.g. “stdio”, “http”).
Trait Implementations§
Source§impl Clone for BackendStatus
impl Clone for BackendStatus
Source§fn clone(&self) -> BackendStatus
fn clone(&self) -> BackendStatus
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 BackendStatus
impl RefUnwindSafe for BackendStatus
impl Send for BackendStatus
impl Sync for BackendStatus
impl Unpin for BackendStatus
impl UnsafeUnpin for BackendStatus
impl UnwindSafe for BackendStatus
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