RowRepr

oxygen.sql.schema.RowRepr
See theRowRepr companion trait
object RowRepr

Attributes

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

Members list

Type members

Classlikes

final case class ColumnRepr[A] extends RowRepr[A]

Attributes

Companion
object
Supertypes
trait Serializable
trait Product
trait Equals
trait RowRepr[A]
class Object
trait Matchable
class Any
Show all
object ColumnRepr

Attributes

Companion
class
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
ColumnRepr.type
case object Empty extends RowRepr[Unit]

Attributes

Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
trait RowRepr[Unit]
class Object
trait Matchable
class Any
Show all
Self type
Empty.type
final case class OptionalRepr[A](inner: RowRepr[A]) extends RowRepr[Option[A]]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait RowRepr[Option[A]]
class Object
trait Matchable
class Any
Show all
object ProductRepr extends Derivable[ProductRepr]

Attributes

Companion
trait
Supertypes
trait Derivable[ProductRepr]
class Object
trait Matchable
class Any
Self type
trait ProductRepr[A] extends RowRepr[A]

Attributes

Companion
object
Supertypes
trait RowRepr[A]
class Object
trait Matchable
class Any
Self type
final case class Transform[A, B](initial: RowRepr[A], ab: A => B, ba: B => A) extends RowRepr[B]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait RowRepr[B]
class Object
trait Matchable
class Any
Show all
final case class TransformOrFail[A, B](initial: RowRepr[A], ab: A => Either[String, B], ba: B => A) extends RowRepr[B]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait RowRepr[B]
class Object
trait Matchable
class Any
Show all

Value members

Concrete methods

inline def apply[A](using ev: RowRepr[A]): RowRepr[A]

Givens

Givens

given boolean: RowRepr[Boolean]
given double: RowRepr[Double]
given float: RowRepr[Float]
given instant: RowRepr[Instant]
given int: RowRepr[Int]
given json: RowRepr[Json]
given jsonb: RowRepr[Jsonb]
given localDate: RowRepr[LocalDate]
given localDateTime: RowRepr[LocalDateTime]
given localTime: RowRepr[LocalTime]
given long: RowRepr[Long]
given option[A](using inner: RowRepr[A]): RowRepr[Option[A]]
given short: RowRepr[Short]
given string: RowRepr[String]
given typedJson[A](using codec: JsonCodec[A]): RowRepr[TypedJson[A]]
given typedJsonb[A](using codec: JsonCodec[A]): RowRepr[TypedJsonb[A]]
given uuid: RowRepr[UUID]