object Marshalling
- Source
- Marshaller.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Marshalling
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- 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.
- final case class WithFixedContentType[A](contentType: ContentType, marshal: () => A) extends Marshalling[A] with Product with Serializable
A Marshalling to a specific pekko.http.scaladsl.model.ContentType.
- final case class WithOpenCharset[A](mediaType: model.MediaType.WithOpenCharset, marshal: (HttpCharset) => A) extends Marshalling[A] with Product with Serializable
A Marshalling to a specific pekko.http.scaladsl.model.MediaType with a flexible charset.