sealed trait Marshalling[+A] extends AnyRef

Describes one possible option for marshalling a given value.

Source
Marshaller.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Marshalling
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def map[B](f: (A) ⇒ B): Marshalling[B]
  2. abstract def toOpaque(charset: HttpCharset): Marshalling[A]

    Converts this marshalling to an opaque marshalling, i.e.

    Converts this marshalling to an opaque marshalling, i.e. a marshalling result that does not take part in content type negotiation. The given charset is used if this instance is a WithOpenCharset marshalling.