(value: &'a serde_yaml::Value, keys: &[&str])
| 785 | } |
| 786 | |
| 787 | fn yaml_get_any<'a>(value: &'a serde_yaml::Value, keys: &[&str]) -> Option<&'a serde_yaml::Value> { |
| 788 | keys.iter().find_map(|key| yaml_get(value, key)) |
| 789 | } |
| 790 | |
| 791 | fn parse_tools_field(value: &serde_yaml::Value) -> Vec<String> { |
| 792 | match value { |
no test coverage detected