Packages

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.

Source
Marshaller.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WithOpenCharset
  2. Serializable
  3. Product
  4. Equals
  5. Marshalling
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new WithOpenCharset(mediaType: model.MediaType.WithOpenCharset, marshal: (HttpCharset) => A)

Value Members

  1. def map[B](f: (A) => B): WithOpenCharset[B]
    Definition Classes
    WithOpenCharsetMarshalling
  2. val marshal: (HttpCharset) => A
  3. val mediaType: model.MediaType.WithOpenCharset
  4. def productElementNames: Iterator[String]
    Definition Classes
    Product
  5. 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.

    Definition Classes
    WithOpenCharsetMarshalling