package parserAndWriter
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- case class AlwaysParserFinder[M[_], T](parser: Parser[T])(implicit m: Functor[M]) extends ParserFinder[M, T] with Product with Serializable
- case class MapParserFinder[M[_], Fail, T](map: Map[Option[ContentType], Parser[T]])(implicit m: MonadCanFail[M, Fail], parserFailer: ParserFailer[Fail]) extends ParserFinder[M, T] with Product with Serializable
- trait Parser[T] extends AnyRef
- trait ParserFailer[Fail] extends AnyRef
- trait ParserFinder[M[_], T] extends AnyRef
- Annotations
- @implicitNotFound("ParserFinder of type [${T}] not found. Is it because you need another implicit in scope? The simplest way to get one in scope if there is only one JSON representation is to implement FromJson[T]")
- trait Writer[T] extends AnyRef