trait EntityEncoder[F[_], A] extends AnyRef
- Self Type
- EntityEncoder[F, A]
- Annotations
- @implicitNotFound( ... )
- Source
- EntityEncoder.scala
- Alphabetic
- By Inheritance
- EntityEncoder
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
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.
-
abstract
def
toEntity(a: A): Entity[F]
Convert the type
A
to an Entity in the effect typeF
Concrete Value Members
-
def
charset: Option[Charset]
Get the Charset of the body encoded by this EntityEncoder, if defined the headers
-
def
contentType: Option[Content-Type]
Get the org.http4s.headers.Content-Type of the body encoded by this EntityEncoder, if defined the headers
-
def
contramap[B](f: (B) ⇒ A): EntityEncoder[F, B]
Make a new EntityEncoder using this type as a foundation
-
def
withContentType(tpe: Content-Type): EntityEncoder[F, A]
Generate a new EntityEncoder that will contain the
Content-Type
header