pub trait GenericRow { }
Expand description
Marker trait for types (primitives, tuples) intended for the generic Executor.
This trait acts as a positive compile-time check. The generic Executor
implementation is constrained to types that implement GenericRow
.
Application-specific models like User
or Post
which have their own
custom executors should not implement this trait. This prevents the
compiler from finding a conflicting implementation and ensures the more
specific executor is chosen for those types.