pub enum HealthRequest {
GetHealthState {
responder: HealthGetHealthStateResponder,
},
}
Variants§
GetHealthState
Retrieves top level health state. A driver not responding promptly can be used as an indication of an unhealthy driver.
Fields
§
responder: HealthGetHealthStateResponder
Implementations§
Source§impl HealthRequest
impl HealthRequest
pub fn into_get_health_state(self) -> Option<HealthGetHealthStateResponder>
Sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HealthRequest
impl !RefUnwindSafe for HealthRequest
impl Send for HealthRequest
impl Sync for HealthRequest
impl Unpin for HealthRequest
impl !UnwindSafe for HealthRequest
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