pub struct HealthResponse {
pub status: String,
pub error: Option<String>,
pub db_size_mb: f64,
pub uptime_seconds: u64,
pub db_ok: bool,
}Fields§
§status: String§error: Option<String>§db_size_mb: f64§uptime_seconds: u64§db_ok: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for HealthResponse
impl RefUnwindSafe for HealthResponse
impl Send for HealthResponse
impl Sync for HealthResponse
impl Unpin for HealthResponse
impl UnsafeUnpin for HealthResponse
impl UnwindSafe for HealthResponse
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