(&self)
| 167 | } |
| 168 | |
| 169 | pub async fn info(&self) -> Result<InfoResponse> { |
| 170 | let response = self.send_rpc_request("/Info", &json!({})).await?; |
| 171 | Ok(InfoResponse::validated_from_value(response)?) |
| 172 | } |
| 173 | |
| 174 | /// Query the guest-agent version. |
| 175 | /// |
nothing calls this directly
no test coverage detected