(value: bool)
| 276 | } |
| 277 | |
| 278 | fn to_option(value: bool) -> Option<&'static str> { |
| 279 | match value { |
| 280 | true => Some("true"), |
| 281 | false => None, |
| 282 | } |
| 283 | } |
| 284 | |
| 285 | fn to_option_string(s: &str) -> Option<&str> { |
| 286 | match s { |
nothing calls this directly
no outgoing calls
no test coverage detected