(path: &Path)
| 661 | } |
| 662 | |
| 663 | pub fn path_to_string(path: &Path) -> String { |
| 664 | path.to_path_buf() |
| 665 | .into_os_string() |
| 666 | .into_string() |
| 667 | .unwrap_or_default() |
| 668 | } |
| 669 | |
| 670 | pub fn read_bytes_from_file(file_path: &str) -> Result<Vec<u8>, Error> { |
| 671 | let file = File::open(file_path)?; |
no outgoing calls