pub type RpcHealthCheckResponse = Result<(), String>;
pub enum RpcHealthCheckResponse { Ok(()), Err(String), }
Contains the success value
Contains the error value