mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
10 lines
211 B
Rust
10 lines
211 B
Rust
use yazi_macro::impl_data_any;
|
|
use yazi_shared::url::UrlBuf;
|
|
|
|
#[derive(Clone, Debug)]
|
|
pub struct DisplaceOpt {
|
|
pub to: Result<UrlBuf, yazi_shim::fs::Error>,
|
|
pub from: UrlBuf,
|
|
}
|
|
|
|
impl_data_any!(DisplaceOpt);
|