The blanket implementation should be generic in the EventStore.
As it is currently written, it works for (smart) pointers to trait objects ONLY, and not for concrete types that implement the EventStore trait, e.g.
Arc<dyn EventStore> receives the target implementation, whereas Arc<PgStore> does not
The blanket implementation should be generic in the EventStore. As it is currently written, it works for (smart) pointers to trait objects ONLY, and not for concrete types that implement the EventStore trait, e.g.
Arc<dyn EventStore>
receives the target implementation, whereasArc<PgStore>
does not