RowDecoder

usql.RowDecoder
See theRowDecoder companion trait
object RowDecoder

Attributes

Companion
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
RowDecoder.type

Members list

Givens

Givens

given empty: RowDecoder[EmptyTuple]
given forColumnar[T](using c: SqlColumnar[T]): RowDecoder[T]
given forDataType[T](using dt: DataType[T]): RowDecoder[T]
given forOptional[T](using rd: RowDecoder[T]): RowDecoder[Option[T]]
given forTuple[H, T <: Tuple](using headDecoder: RowDecoder[H], tailDecoder: RowDecoder[T]): RowDecoder[H *: T]