| Safe Haskell | None |
|---|---|
| Language | GHC2024 |
Okapi.HTTP.Request.Body
Documentation
Constructors
| Raw :: Body (IO ByteString) | |
| Json :: forall a1. IsoJson a1 => Body (IO a1) | |
| NoContent :: Body (IO ()) | |
| Form :: forall a1. (ToForm a1, FromForm a1) => Body (IO a1) |
Instances
| type Context Body Source # | |
Defined in Okapi.HTTP.Request.Body | |
| type Failure Body Source # | |
Defined in Okapi.HTTP.Request.Body | |
data ParseError Source #
Constructors
| ParseError |
Instances
| Show ParseError Source # | |
Defined in Okapi.HTTP.Request.Body Methods showsPrec :: Int -> ParseError -> ShowS # show :: ParseError -> String # showList :: [ParseError] -> ShowS # | |
| Eq ParseError Source # | |
Defined in Okapi.HTTP.Request.Body | |
raw :: Tree Body (IO ByteString) (IO ByteString) Source #