Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Hpack.Error
Synopsis
- data HpackError
- formatHpackError :: ProgramName -> HpackError -> String
- newtype ProgramName = ProgramName {}
- type URL = String
- data Status = Status {}
- formatStatus :: Status -> String
Documentation
NOTE: This module is exposed to allow integration of Hpack into other tools. It is not meant for general use by end users. The following caveats apply:
- The API is undocumented, consult the source instead.
- The exposed types and functions primarily serve Hpack's own needs, not that of a public API. Breaking changes can happen as Hpack evolves.
As an Hpack user you either want to use the hpack
executable or a build
tool that supports Hpack (e.g. stack
or cabal2nix
).
data HpackError Source #
Constructors
HpackVersionNotSupported FilePath Version Version | |
DefaultsFileNotFound FilePath | |
DefaultsDownloadFailed URL Status | |
CycleInDefaults [FilePath] | |
ParseError String | |
DecodeValueError FilePath String |
Instances
Show HpackError Source # | |
Defined in Hpack.Error | |
Eq HpackError Source # | |
Defined in Hpack.Error Methods (==) :: HpackError -> HpackError -> Bool Source # (/=) :: HpackError -> HpackError -> Bool Source # |
formatHpackError :: ProgramName -> HpackError -> String Source #
newtype ProgramName Source #
Constructors
ProgramName | |
Fields |
Instances
IsString ProgramName Source # | |
Defined in Hpack.Error Methods fromString :: String -> ProgramName Source # | |
Show ProgramName Source # | |
Defined in Hpack.Error | |
Eq ProgramName Source # | |
Defined in Hpack.Error Methods (==) :: ProgramName -> ProgramName -> Bool Source # (/=) :: ProgramName -> ProgramName -> Bool Source # |
HTTP Status.
Only the statusCode
is used for comparisons.
Please use mkStatus
to create status codes from code and message, or the Enum
instance or the
status code constants (like ok200
). There might be additional record members in the future.
Note that the Show
instance is only for debugging.
Constructors
Status | |
Fields
|
Instances
Data Status | Since: http-types-0.12.4 |
Defined in Network.HTTP.Types.Status Methods gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Status -> c Status Source # gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Status Source # toConstr :: Status -> Constr Source # dataTypeOf :: Status -> DataType Source # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c Status) Source # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Status) Source # gmapT :: (forall b. Data b => b -> b) -> Status -> Status Source # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Status -> r Source # gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Status -> r Source # gmapQ :: (forall d. Data d => d -> u) -> Status -> [u] Source # gmapQi :: Int -> (forall d. Data d => d -> u) -> Status -> u Source # gmapM :: Monad m => (forall d. Data d => d -> m d) -> Status -> m Status Source # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Status -> m Status Source # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Status -> m Status Source # | |
Bounded Status | Since: http-types-0.11 |
Enum Status | Be advised, that when using the "enumFrom*" family of methods or ranges in lists, it will generate all possible status codes. E.g. The statuses not included in this library will have an empty message. Since: http-types-0.7.3 |
Defined in Network.HTTP.Types.Status Methods succ :: Status -> Status Source # pred :: Status -> Status Source # toEnum :: Int -> Status Source # fromEnum :: Status -> Int Source # enumFrom :: Status -> [Status] Source # enumFromThen :: Status -> Status -> [Status] Source # enumFromTo :: Status -> Status -> [Status] Source # enumFromThenTo :: Status -> Status -> Status -> [Status] Source # | |
Generic Status | |
Show Status | |
Eq Status | A |
Ord Status |
|
type Rep Status | Since: http-types-0.12.4 |
Defined in Network.HTTP.Types.Status type Rep Status = D1 ('MetaData "Status" "Network.HTTP.Types.Status" "http-types-0.12.4-2TJqM0U0wPY5w6ALloe2SY" 'False) (C1 ('MetaCons "Status" 'PrefixI 'True) (S1 ('MetaSel ('Just "statusCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Int) :*: S1 ('MetaSel ('Just "statusMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 ByteString))) |
formatStatus :: Status -> String Source #