(value: &str)
| 1158 | } |
| 1159 | |
| 1160 | fn normalized_device_name(value: &str) -> String { |
| 1161 | value |
| 1162 | .trim() |
| 1163 | .strip_prefix("SimDeck ") |
| 1164 | .unwrap_or_else(|| value.trim()) |
| 1165 | .to_ascii_lowercase() |
| 1166 | } |
| 1167 | |
| 1168 | fn path_safe_id(value: &str) -> String { |
| 1169 | let safe = value |
no outgoing calls
no test coverage detected