Packages

trait EntityEncoder[F[_], A] extends AnyRef

Self Type
EntityEncoder[F, A]
Annotations
@implicitNotFound( ... )
Source
EntityEncoder.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EntityEncoder
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def headers: Headers

    Headers that may be added to a Message

    Headers that may be added to a Message

    Examples of such headers would be Content-Type. NOTE: The Content-Length header will be generated from the resulting Entity and thus should not be added.

  2. abstract def toEntity(a: A): Entity[F]

    Convert the type A to an Entity in the effect type F

Concrete Value Members

  1. def charset: Option[Charset]

    Get the Charset of the body encoded by this EntityEncoder, if defined the headers

  2. def contentType: Option[Content-Type]

    Get the org.http4s.headers.Content-Type of the body encoded by this EntityEncoder, if defined the headers

  3. def contramap[B](f: (B) ⇒ A): EntityEncoder[F, B]

    Make a new EntityEncoder using this type as a foundation

  4. def withContentType(tpe: Content-Type): EntityEncoder[F, A]

    Generate a new EntityEncoder that will contain the Content-Type header