pub enum ComponentOtaHealthCheckRequest {
GetHealthStatus {
responder: ComponentOtaHealthCheckGetHealthStatusResponder,
},
}
Expand description
Protocol for getting the health status of a component. It is up to the component authors to decide what a component should do after marking the partition as unhealthy.
Variants§
GetHealthStatus
Fields
Implementations§
Source§impl ComponentOtaHealthCheckRequest
impl ComponentOtaHealthCheckRequest
pub fn into_get_health_status( self, ) -> Option<ComponentOtaHealthCheckGetHealthStatusResponder>
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 ComponentOtaHealthCheckRequest
impl !RefUnwindSafe for ComponentOtaHealthCheckRequest
impl Send for ComponentOtaHealthCheckRequest
impl Sync for ComponentOtaHealthCheckRequest
impl Unpin for ComponentOtaHealthCheckRequest
impl !UnwindSafe for ComponentOtaHealthCheckRequest
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