Provides a RowEncoder instance for all traversable collections.
List, for example:
List
scala> RowEncoder[List[Int]].encode(List(123, 456, 789)) res1: Seq[String] = List(123, 456, 789)