pub trait Handler<R, B, E> { // Required method fn run(&mut self, event: Request<B>) -> Result<R, E>; }
Functions acting as Now Lambda handlers must conform to this type.
Method to execute the handler function