pub trait EventBuilder { type Output; fn build(&mut self) -> Self::Output; }
A builder for an event.
The event produced by the builder.
Build, returning the output.