pub struct HealthStatus {
pub status: String,
pub framework: String,
pub version: String,
pub timestamp: u64,
pub server: ServerStatus,
}Expand description
Health check response structure
Fields§
§status: String§framework: String§version: String§timestamp: u64§server: ServerStatusTrait Implementations§
Source§impl Default for HealthStatus
impl Default for HealthStatus
Auto Trait Implementations§
impl Freeze for HealthStatus
impl RefUnwindSafe for HealthStatus
impl Send for HealthStatus
impl Sync for HealthStatus
impl Unpin for HealthStatus
impl UnwindSafe for HealthStatus
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