TupleDecoder

oxygen.json.JsonDecoder.TupleDecoder
See theTupleDecoder companion object
sealed trait TupleDecoder[A <: Tuple] extends JsonDecoder[A]

Attributes

Companion
object
Graph
Supertypes
trait JsonDecoder[A]
class Object
trait Matchable
class Any
Known subtypes
class Append[A, B]
object Empty

Members list

Value members

Concrete methods

final override def decodeJsonAST(ast: Json): Either[JsonError, A]

Attributes

Definition Classes

Inherited methods

final def <>[B >: A](that: JsonDecoder[B]): JsonDecoder[B]

Attributes

Inherited from:
JsonDecoder
final def decodeJsonString(string: String): Either[JsonError, A]

Attributes

Inherited from:
JsonDecoder
final def map[B](f: A => B): JsonDecoder[B]

Attributes

Inherited from:
JsonDecoder
final def mapAttempt[B](f: A => B)(using typeTag: TypeTag[B]): JsonDecoder[B]

Attributes

Inherited from:
JsonDecoder
final def mapJsonInput(f: PartialFunction[Json, Json]): JsonDecoder[A]

Attributes

Inherited from:
JsonDecoder
final def mapOrFail[B](f: A => Either[String, B]): JsonDecoder[B]

Attributes

Inherited from:
JsonDecoder

Abstract fields

val size: Int

Inherited fields

val onMissingFromObject: Option[A]

Attributes

Inherited from:
JsonDecoder