pub struct HealthResponse {
pub status: String,
pub last_frame_timestamp: Option<DateTime<Utc>>,
pub last_audio_timestamp: Option<DateTime<Utc>>,
pub last_ui_timestamp: Option<DateTime<Utc>>,
pub frame_status: String,
pub audio_status: String,
pub ui_status: String,
pub message: String,
pub verbose_instructions: Option<String>,
}
Fields§
§status: String
§last_frame_timestamp: Option<DateTime<Utc>>
§last_audio_timestamp: Option<DateTime<Utc>>
§last_ui_timestamp: Option<DateTime<Utc>>
§frame_status: String
§audio_status: String
§ui_status: String
§message: String
§verbose_instructions: Option<String>
Trait Implementations§
Source§impl Debug for HealthResponse
impl Debug for HealthResponse
Source§impl<'de> Deserialize<'de> for HealthResponse
impl<'de> Deserialize<'de> for HealthResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for HealthResponse
impl RefUnwindSafe for HealthResponse
impl Send for HealthResponse
impl Sync for HealthResponse
impl Unpin 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