ResultDecoder

oxygen.sql.schema.ResultDecoder
See theResultDecoder companion trait
object ResultDecoder extends Derivable[ResultDecoder]

Attributes

Companion
trait
Graph
Supertypes
trait Derivable[ResultDecoder]
class Object
trait Matchable
class Any
Self type

Members list

Type members

Classlikes

final case class ColumnDecoder[A] extends ResultDecoder[A]

Attributes

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

Attributes

Companion
class
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
trait CustomDecoder[A] extends ResultDecoder[A]

Attributes

Supertypes
trait ResultDecoder[A]
class Object
trait Matchable
class Any
case object Empty extends ResultDecoder[Unit]

Attributes

Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
trait ResultDecoder[Unit]
class Object
trait Matchable
class Any
Show all
Self type
Empty.type
final case class MapDecoder[A, B] extends ResultDecoder[B]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait ResultDecoder[B]
class Object
trait Matchable
class Any
Show all
final case class MapOrFailDecoder[A, B] extends ResultDecoder[B]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait ResultDecoder[B]
class Object
trait Matchable
class Any
Show all
final case class OptionalDecoder[A](inner: ResultDecoder[A]) extends ResultDecoder[Option[A]]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait ResultDecoder[Option[A]]
class Object
trait Matchable
class Any
Show all
final case class SingleDecoder[A] extends ResultDecoder[A]

Attributes

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

Attributes

Companion
class
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
final case class WithColumns[A](inner: ResultDecoder[A], columns: Columns[A]) extends ResultDecoder[A]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait ResultDecoder[A]
class Object
trait Matchable
class Any
Show all

Value members

Concrete methods

inline override def derived[A]: ResultDecoder[A]

Unfortunately, scala macros do not allow this to be implemented in Derivable. Therefore, every companion object that extends Derivable must implement this function with the following body: ${ derivedImpl[A] }

Unfortunately, scala macros do not allow this to be implemented in Derivable. Therefore, every companion object that extends Derivable must implement this function with the following body: ${ derivedImpl[A] }

Attributes

Definition Classes
Derivable
def isAllNull(fromIndexInclusive: Int, toIndexExclusive: Int, values: Contiguous[Matchable]): Boolean

Givens

Givens

given fromRowRepr[A](using repr: RowRepr[A]): ResultDecoder[A]