pub struct HealthResponse {
pub status: String,
pub version: String,
pub uptime_seconds: u64,
pub model: Option<String>,
pub architecture: Option<String>,
pub sandbox: bool,
}Fields§
§status: String§version: String§uptime_seconds: u64§model: Option<String>§architecture: Option<String>§sandbox: boolTrait Implementations§
Source§impl Debug for HealthResponse
impl Debug for HealthResponse
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