RootJsonFormat

trait RootJsonFormat[T] extends JsonFormat[T] with RootJsonReader[T] with RootJsonWriter[T]

A special JsonFormat signaling that the format produces a legal JSON root object, i.e. either a JSON array or a JSON object.

trait JsonFormat[T]
trait JsonWriter[T]
trait JsonReader[T]
class Object
trait Matchable
class Any

Value members

Inherited methods

def read(json: JsValue): T
Inherited from
JsonReader
def write(obj: T): JsValue
Inherited from
JsonWriter