use std::path::Path; fn read<P: AsRef<Path>>(file: P) -> Result<String, std::io::Error> { let mut file = File::open(file)?; let mut data ...
確定! 回上一頁