pub trait Operation { // Required method fn execute(&self, input: &[u8]) -> Result<Vec<u8>, OperationError>; }