mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
14 lines
293 B
Rust
14 lines
293 B
Rust
use yazi_macro::impl_data_any;
|
|
use yazi_shared::{id::Id, path::PathBufDyn, url::UrlBuf};
|
|
|
|
use crate::cmp::CmpItem;
|
|
|
|
#[derive(Clone, Debug)]
|
|
pub struct CmpOpt {
|
|
pub cache: Vec<CmpItem>,
|
|
pub cache_name: UrlBuf,
|
|
pub word: PathBufDyn,
|
|
pub ticket: Id,
|
|
}
|
|
|
|
impl_data_any!(CmpOpt);
|