Part

org.http4s.multipart.Part
See thePart companion object
final case class Part[+F[_]](headers: Headers, entity: Entity[F]) extends Media[F]

Attributes

Companion
object
Source
Part.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Media[F]
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

override def covary[F2[x]]: Part[F2]

Attributes

Definition Classes
Source
Part.scala

This part's filename from its Content-Disposition header, decoded as UTF-8.

This part's filename from its Content-Disposition header, decoded as UTF-8.

Attributes

Source
Part.scala
def filename(charset: Charset): Option[String]

This part's filename from its Content-Disposition header, decoded as the specified charset.

This part's filename from its Content-Disposition header, decoded as the specified charset.

Attributes

Source
Part.scala

This part's filename from its Content-Disposition header, as a chunk of bytes.

This part's filename from its Content-Disposition header, as a chunk of bytes. Interpretation into character data is the responsibility of the caller.

Attributes

Source
Part.scala

This part's name from its Content-Disposition header, decoded as UTF-8.

This part's name from its Content-Disposition header, decoded as UTF-8.

Attributes

Source
Part.scala
def name(charset: Charset): Option[String]

This part's name from its Content-Disposition header, decoded as the specified charset.

This part's name from its Content-Disposition header, decoded as the specified charset.

Attributes

Source
Part.scala

This part's name from its Content-Disposition header, as a chunk of bytes.

This part's name from its Content-Disposition header, as a chunk of bytes. Interpretation into character data is the responsibility of the caller.

Attributes

Source
Part.scala

Inherited methods

final def body: EntityBody[F]

Attributes

Inherited from:
Media
Source
Media.scala
final def bodyText[F2[x]](implicit RT: RaiseThrowable[F2], defaultCharset: Charset): Stream[F2, String]

Attributes

Inherited from:
Media
Source
Media.scala
final def charset: Option[Charset]

Attributes

Inherited from:
Media
Source
Media.scala
final def contentLength: Option[Long]

Attributes

Inherited from:
Media
Source
Media.scala

Attributes

Inherited from:
Media
Source
Media.scala

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product