trait JsonFieldDecoder[+A] extends AnyRef

When decoding a JSON Object, we only allow the keys that implement this interface.

Self Type
JsonFieldDecoder[A]
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JsonFieldDecoder
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def unsafeDecodeField(trace: List[JsonError], in: String): A

Concrete Value Members

  1. final def map[B](f: (A) => B): JsonFieldDecoder[B]
  2. final def mapOrFail[B](f: (A) => Either[String, B]): JsonFieldDecoder[B]