1 2 3 4 5 6 7 8 9 10 11 12 13
use std::{ fs::File, io::{Read, Result}, path::Path, }; pub fn read_file(path: &Path) -> Result<String> { let mut file = File::open(path)?; let mut contents = String::new(); file.read_to_string(&mut contents)?; Ok(contents) }