(value: Option<String>)
| 5430 | } |
| 5431 | |
| 5432 | fn trimmed_optional_string(value: Option<String>) -> Option<String> { |
| 5433 | value |
| 5434 | .map(|value| value.trim().to_owned()) |
| 5435 | .filter(|value| !value.is_empty()) |
| 5436 | } |
| 5437 | |
| 5438 | fn split_filter_values(value: Option<&str>) -> Vec<String> { |
| 5439 | value |
no test coverage detected