JsonFormat

@implicitNotFound("No Json formatter found for type ${T}. Try to implement an implicit JsonFormat for this type.") trait JsonFormat[T] extends Writer[T] with Reader[T]
trait Reader[T]
trait Writer[T]
class Object
trait Matchable
class Any

Value members

Inherited methods

def read(value: JValue): T
Inherited from
Reader
def write(obj: T): JValue
Inherited from
Writer