1 2 3 4 5 6 7 8 9 10 11 12 13
use std::ffi::OsString; #[derive(Debug)] pub struct ExternalCommand { pub program: String, pub args: Vec<OsString>, } #[derive(Debug)] pub enum PageAction { None, Suspend(ExternalCommand), }