Trait augdom::event::EventBuilder[][src]

pub trait EventBuilder {
    type Output;
    fn build(&mut self) -> Self::Output;
}
Expand description

A builder for an event.

Associated Types

The event produced by the builder.

Required methods

Build, returning the output.

Implementations on Foreign Types

Implementors