用 use
进行导入嵌套
在 Rust 中: 嵌套导入中添加了一种编写 use
语句的新方法。
如果您曾编写过这样的一组导入:
use std::fs::File;
use std::io::Read;
use std::path::{Path, PathBuf};
可以这样写了:
# mod foo {
// on one line
use std::{fs::File, io::Read, path::{Path, PathBuf}};
# }
# mod bar {
// with some more breathing room
use std::{
fs::File,
io::Read,
path::{
Path,
PathBuf
}
};
# }
这可以减少一些重复,并使事情更清晰。
当前内容版权归 rust-lang-cn 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 rust-lang-cn .