pub trait HandlerTrait { // Required method fn process(&mut self, context: HandlerContext) -> Result<String>; }
Handler trait for unified interface