object Marshalling

Source
Marshaller.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Marshalling
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class Opaque[A](marshal: () => A) extends Marshalling[A] with Product with Serializable

    A Marshalling to an unknown MediaType and charset.

    A Marshalling to an unknown MediaType and charset. Circumvents content negotiation.

  2. final case class WithFixedContentType[A](contentType: ContentType, marshal: () => A) extends Marshalling[A] with Product with Serializable

    A Marshalling to a specific akka.http.scaladsl.model.ContentType.

  3. final case class WithOpenCharset[A](mediaType: model.MediaType.WithOpenCharset, marshal: (HttpCharset) => A) extends Marshalling[A] with Product with Serializable

    A Marshalling to a specific akka.http.scaladsl.model.MediaType with a flexible charset.