Trait AssociatedEventFactory

Source
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§

Source

type Factory: EventFactory<Record = Self> + Sized

The associated factory.

Implementations on Foreign Types§

Source§

impl AssociatedEventFactory for Vec<Value>

Implementors§