Record

dynosaur.Schema.structure.Record
case class Record[R](value: FreeApplicative[[_] =>> Field[R, _$32], R]) extends Schema[R]

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Schema[R]
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def asList: Schema[List[A]]

Attributes

Inherited from:
Schema
def asMap: Schema[Map[String, A]]

Attributes

Inherited from:
Schema
def asSeq: Schema[Seq[A]]

Attributes

Inherited from:
Schema
def asVector: Schema[Vector[A]]

Attributes

Inherited from:
Schema
def imap[B](f: R => B)(g: B => R): Schema[B]

Attributes

Inherited from:
Schema
def imapErr[B](f: R => Either[ReadError, B])(g: B => R): Schema[B]

Attributes

Inherited from:
Schema
def nullable: Schema[Option[A]]

Attributes

Inherited from:
Schema
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
def read(v: DynamoValue): Either[ReadError, A]

Attributes

Inherited from:
Schema
def tag(name: String): Schema[A]

Attributes

Inherited from:
Schema
def write(a: R): Either[WriteError, DynamoValue]

Attributes

Inherited from:
Schema
def xmap[B](f: R => Either[ReadError, B])(g: B => Either[WriteError, R]): Schema[B]

Attributes

Inherited from:
Schema