Reader

@implicitNotFound("No JSON deserializer found for type ${T}. Try to implement an implicit Reader or JsonFormat for this type.")
trait Reader[T]
Companion:
object
Source:
Reader.scala
class Object
trait Matchable
class Any
trait JsonFormat[T]

Value members

Abstract methods

def readEither(value: JValue): Either[MappingException, T]

Concrete methods

def map[A](f: T => A): Reader[A]