| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Wrecker.Options
- data RunType
- data DisplayMode
- data URLDisplay
- data Options = Options {}
- defaultOptions :: Options
- data PartialOptions = PartialOptions {
- mConcurrency :: Maybe Int
- mBinCount :: Maybe Int
- mRunStyle :: Maybe RunType
- mTimeoutTime :: Maybe Int
- mDisplayMode :: Maybe DisplayMode
- mLogLevel :: Maybe LogLevel
- mLogFmt :: Maybe LogFormat
- mMatch :: Maybe String
- mRequestNameColumnSize :: Maybe Int
- mOutputFilePath :: Maybe FilePath
- mSilent :: Maybe Bool
- murlDisplay :: Maybe URLDisplay
- mRecordQuery :: Maybe Bool
- mListTestGroups :: Maybe Bool
- completeOptions :: PartialOptions -> Maybe Options
- optionalOption :: Read a => Mod OptionFields a -> Parser (Maybe a)
- optionalStrOption :: Mod OptionFields String -> Parser (Maybe String)
- optionalSwitch :: Mod FlagFields Bool -> Parser (Maybe Bool)
- pPartialOptions :: Parser PartialOptions
- runParser :: IO Options
Documentation
data DisplayMode Source #
DisplayMode controls how results are displayed in the console. The
default is NonInterative which returns the final results at the end of the
program. Interactive will show partial results as the program updates.
Constructors
| Interactive | |
| NonInteractive |
Instances
data URLDisplay Source #
Instances
Constructors
| Options | |
Fields
| |
defaultOptions :: Options Source #
defaultOptions provides sensible default for the Options
types
data PartialOptions Source #
Constructors
| PartialOptions | |
Fields
| |
Instances
optionalOption :: Read a => Mod OptionFields a -> Parser (Maybe a) Source #
optionalStrOption :: Mod OptionFields String -> Parser (Maybe String) Source #
optionalSwitch :: Mod FlagFields Bool -> Parser (Maybe Bool) Source #