pub type EventConversion = Box<dyn Fn(Value) -> Result<Arc<dyn Event>, Error> + Send>;
Function type to convert a json event into an instance of it self but as dyn Event
struct EventConversion(/* private fields */);