Packages

trait HttpCodec[A] extends Renderer[A]

Source
HttpCodec.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HttpCodec
  2. Renderer
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def parse(s: String): ParseResult[A]
  2. abstract def render(writer: Writer, t: A): writer.type

    Renders the object to the writer

    Renders the object to the writer

    writer

    Writer to render to

    t

    object to render

    returns

    the same Writer provided

    Definition Classes
    Renderer

Concrete Value Members

  1. final def parseOrThrow(s: String): A

    Warning: partial method.

    Warning: partial method. Intended for tests and macros that have assured that s can be parsed to a valid A.