Open keltia opened 2 months ago
Right now, Fetchable and Streamable traits are used through trait objects and thus enable dynamic (aka runtime) dispatch. It might be useful and less complex to use enum_dispatch to switch to static (aka compile-time) dispatch.
Fetchable
Streamable
To be explored.
Right now,
Fetchable
andStreamable
traits are used through trait objects and thus enable dynamic (aka runtime) dispatch. It might be useful and less complex to use enum_dispatch to switch to static (aka compile-time) dispatch.To be explored.