yazi/yazi-scheduler/src/out.rs
2025-05-21 17:32:41 +08:00

8 lines
165 B
Rust

use crate::{file::FileOut, plugin::PluginOut, prework::PreworkOut};
#[derive(Debug)]
pub enum TaskOut {
File(FileOut),
Plugin(PluginOut),
Prework(PreworkOut),
}