(path: P, data: &str)
| 31 | } |
| 32 | |
| 33 | pub fn save_string<P: ResPathSource>(path: P, data: &str) -> io::Result<()> { |
| 34 | save_bytes(path, data.as_bytes()) |
| 35 | } |
| 36 | |
| 37 | pub fn exists<P: ResPathSource>(path: P) -> bool { |
| 38 | let path = path.as_res_path_str(); |
nothing calls this directly
no test coverage detected