extern crate async_std; use async_std::{fs::File, io, prelude::*, task}; // 读文件异步方法 async fn read_file(path: &str) -> io::Result<String> { let mut ...
確定! 回上一頁