pub trait AssociatedEventFactory {
type Factory: EventFactory<Record = Self> + Sized;
}Expand description
A trait to annotate Self with an EventFactory that accepts Self as a Record.
Required Associated Types§
Sourcetype Factory: EventFactory<Record = Self> + Sized
type Factory: EventFactory<Record = Self> + Sized
The associated factory.