{-# options_haddock prune #-}

-- |ListConfig Data Type, Internal
module Helic.Data.ListConfig where

data ListConfig =
  ListConfig {
    ListConfig -> Maybe Int
limit :: Maybe Int
  }
  deriving stock (ListConfig -> ListConfig -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListConfig -> ListConfig -> Bool
$c/= :: ListConfig -> ListConfig -> Bool
== :: ListConfig -> ListConfig -> Bool
$c== :: ListConfig -> ListConfig -> Bool
Eq, Int -> ListConfig -> ShowS
[ListConfig] -> ShowS
ListConfig -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListConfig] -> ShowS
$cshowList :: [ListConfig] -> ShowS
show :: ListConfig -> String
$cshow :: ListConfig -> String
showsPrec :: Int -> ListConfig -> ShowS
$cshowsPrec :: Int -> ListConfig -> ShowS
Show, forall x. Rep ListConfig x -> ListConfig
forall x. ListConfig -> Rep ListConfig x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListConfig x -> ListConfig
$cfrom :: forall x. ListConfig -> Rep ListConfig x
Generic)
  deriving anyclass (ListConfig
forall a. a -> Default a
def :: ListConfig
$cdef :: ListConfig
Default)