| Safe Haskell | Safe-Inferred |
|---|---|
| Language | Haskell2010 |
Experimenter.Availability.Type
Documentation
data Availability m b Source #
Constructors
| Available !b | |
| AvailableOnDemand !(DB m b) |
Instances
| Show b => Show (Availability m b) Source # | |
Defined in Experimenter.Availability.Type Methods showsPrec :: Int -> Availability m b -> ShowS # show :: Availability m b -> String # showList :: [Availability m b] -> ShowS # | |
| NFData b => NFData (Availability m b) Source # | |
Defined in Experimenter.Availability.Type Methods rnf :: Availability m b -> () # | |
data AvailabilityListWhere Source #
Constructors
| GetAll | |
| PrepInputWhere !(SqlExpr (Entity PrepInput) -> SqlExpr (Entity PrepInputValue) -> SqlQuery ()) | |
| WarmUpInputWhere !(SqlExpr (Entity WarmUpInput) -> SqlExpr (Entity WarmUpInputValue) -> SqlQuery ()) | |
| RepInputWhere !(SqlExpr (Entity RepInput) -> SqlExpr (Entity RepInputValue) -> SqlQuery ()) | |
| PrepMeasureWhere !(SqlExpr (Entity PrepMeasure) -> SqlExpr (Entity PrepResultStep) -> SqlQuery ()) | |
| WarmUpMeasureWhere !(SqlExpr (Entity WarmUpMeasure) -> SqlExpr (Entity WarmUpResultStep) -> SqlQuery ()) | |
| RepMeasureWhere !(SqlExpr (Entity RepMeasure) -> SqlExpr (Entity RepResultStep) -> SqlQuery ()) |
Instances
| Show AvailabilityListWhere Source # | |
Defined in Experimenter.Availability.Type Methods showsPrec :: Int -> AvailabilityListWhere -> ShowS # show :: AvailabilityListWhere -> String # showList :: [AvailabilityListWhere] -> ShowS # | |
data AvailabilityList m b Source #
Constructors
| AvailableList !(Int, [b]) (AvailabilityListWhere -> ConduitT () b (DB m) ()) | |
| AvailableListOnDemand (Int, AvailabilityListWhere -> ConduitT () b (DB m) ()) |
Instances
| Show b => Show (AvailabilityList m b) Source # | |
Defined in Experimenter.Availability.Type Methods showsPrec :: Int -> AvailabilityList m b -> ShowS # show :: AvailabilityList m b -> String # showList :: [AvailabilityList m b] -> ShowS # | |
| NFData b => NFData (AvailabilityList m b) Source # | |
Defined in Experimenter.Availability.Type Methods rnf :: AvailabilityList m b -> () # | |