notes/pl/rs/features/import.txt
Ihar Hancharenka 5dff80e88e first
2023-03-27 16:52:17 +03:00

13 строки
216 B
Plaintext

// nested import groups - on one line
use std::{fs::File, io::Read, path::{Path, PathBuf}};
// with some more breathing room
use std::{
fs::File,
io::Read,
path::{
Path,
PathBuf
}
};