(path: &Path)
| 647 | } |
| 648 | |
| 649 | pub fn path_to_string(path: &Path) -> String { |
| 650 | path.to_path_buf() |
| 651 | .into_os_string() |
| 652 | .into_string() |
| 653 | .unwrap_or_default() |
| 654 | } |
| 655 | |
| 656 | pub fn read_bytes_from_file(file_path: &str) -> Result<Vec<u8>, Error> { |
| 657 | let file = File::open(file_path)?; |
no outgoing calls