Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
serialize/row: relax restriction on SerializeRow impl on reference
The bound on `impl<T: SerializeRow> SerializeRow for &T` implicitly requires the type `T` to be sized, preventing it from being used with `dyn SerializeRow`. Relax the restriction by adding `+ ?Sized` to be able to use it with trait objects.
- Loading branch information