1 2 3 4 5
use crate::error::WarpError; pub trait Executable { fn execute(&self) -> Result<(), WarpError>; }