servant-kotlin-0.1.1.3: Automatically derive Kotlin class to query servant webservices

Safe HaskellNone
LanguageHaskell2010

Servant.Kotlin.Type

Documentation

class KotlinType a where Source #

Instances
KotlinType Bool Source # 
Instance details

Defined in Servant.Kotlin.Type

KotlinType Char Source # 
Instance details

Defined in Servant.Kotlin.Type

KotlinType Double Source # 
Instance details

Defined in Servant.Kotlin.Type

KotlinType Float Source # 
Instance details

Defined in Servant.Kotlin.Type

KotlinType Int Source # 
Instance details

Defined in Servant.Kotlin.Type

KotlinType Int8 Source # 
Instance details

Defined in Servant.Kotlin.Type

KotlinType Int16 Source # 
Instance details

Defined in Servant.Kotlin.Type

KotlinType Int32 Source # 
Instance details

Defined in Servant.Kotlin.Type

KotlinType Int64 Source # 
Instance details

Defined in Servant.Kotlin.Type

KotlinType () Source # 
Instance details

Defined in Servant.Kotlin.Type

KotlinType Text Source # 
Instance details

Defined in Servant.Kotlin.Type

KotlinType UTCTime Source # 
Instance details

Defined in Servant.Kotlin.Type

KotlinType NoContent Source # 
Instance details

Defined in Servant.Kotlin.Type

KotlinType a => KotlinType [a] Source # 
Instance details

Defined in Servant.Kotlin.Type

KotlinType a => KotlinType (Maybe a) Source # 
Instance details

Defined in Servant.Kotlin.Type

KotlinType v => KotlinType (IntMap v) Source # 
Instance details

Defined in Servant.Kotlin.Type

(KotlinType a, KotlinType b) => KotlinType (a, b) Source # 
Instance details

Defined in Servant.Kotlin.Type

Methods

toKotlinType :: (a, b) -> Maybe KotlinClass Source #

(KotlinType k, KotlinType v) => KotlinType (Map k v) Source # 
Instance details

Defined in Servant.Kotlin.Type

KotlinType a => KotlinType (Proxy a) Source # 
Instance details

Defined in Servant.Kotlin.Type

class GenericKotlinType f where Source #

Minimal complete definition

genericToKotlinType

Instances
KotlinType a => GenericKotlinType (Rec0 a) Source # 
Instance details

Defined in Servant.Kotlin.Type

(Datatype d, GenericKotlinFields f) => GenericKotlinType (D1 d f) Source # 
Instance details

Defined in Servant.Kotlin.Type