pub enum HealthVerificationRequest {
QueryHealthChecks {
responder: HealthVerificationQueryHealthChecksResponder,
},
}
Expand description
Protocol for reading health check statuses.
Variants§
QueryHealthChecks
Queries the suite of health checks.
Returns ZX_OK
if every required check is healthy.
Fields
Implementations§
Source§impl HealthVerificationRequest
impl HealthVerificationRequest
pub fn into_query_health_checks( self, ) -> Option<HealthVerificationQueryHealthChecksResponder>
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 HealthVerificationRequest
impl !RefUnwindSafe for HealthVerificationRequest
impl Send for HealthVerificationRequest
impl Sync for HealthVerificationRequest
impl Unpin for HealthVerificationRequest
impl !UnwindSafe for HealthVerificationRequest
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