6 lines
86 B
Rust
6 lines
86 B
Rust
pub struct FsEntry {
|
|
pub name: String,
|
|
pub is_dir: bool,
|
|
pub size: u64,
|
|
}
|