pub trait Symbol { type Error; fn target_reached(&self) -> Result; fn execute(&self) -> Result<(), Self::Error>; } pub mod user; pub mod systemd;