Packages

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.

Source
Marshaller.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WithFixedContentType
  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 WithFixedContentType(contentType: ContentType, marshal: () => A)

Value Members

  1. val contentType: ContentType
  2. def map[B](f: (A) => B): WithFixedContentType[B]
    Definition Classes
    WithFixedContentTypeMarshalling
  3. val marshal: () => A
  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
    WithFixedContentTypeMarshalling