(candidate: &str)
| 72 | } |
| 73 | |
| 74 | fn parse_candidate_deployed_engine_version(candidate: &str) -> Option<DeployedEngineVersion> { |
| 75 | let candidate = candidate.trim(); |
| 76 | |
| 77 | if candidate.is_empty() { |
| 78 | return None; |
| 79 | } |
| 80 | |
| 81 | candidate.parse::<DeployedEngineVersion>().ok() |
| 82 | } |
| 83 | |
| 84 | fn parse_deployed_engine_version( |
| 85 | runtime_engine_version: Option<&str>, |
no outgoing calls
no test coverage detected