yazi/yazi-core/src/cmp/item.rs
2026-03-31 19:18:18 +08:00

7 lines
127 B
Rust

use yazi_shared::strand::StrandBuf;
#[derive(Debug, Clone)]
pub struct CmpItem {
pub name: StrandBuf,
pub is_dir: bool,
}