hydra-0.5.1: Type-aware transformations for data and programs
Safe HaskellSafe-Inferred
LanguageHaskell2010

Hydra.Langs.Protobuf.Any

Description

Synopsis

Documentation

data Any Source #

Any contains an arbitrary serialized protocol buffer message along with a URL that describes the type of the serialized message.

Constructors

Any 

Fields

  • anyTypeUrl :: String

    A URL/resource name that uniquely identifies the type of the serialized protocol buffer message.

  • anyValue :: String

    Must be a valid serialized protocol buffer of the above specified type.

Instances

Instances details
Read Any Source # 
Instance details

Defined in Hydra.Langs.Protobuf.Any

Show Any Source # 
Instance details

Defined in Hydra.Langs.Protobuf.Any

Methods

showsPrec :: Int -> Any -> ShowS #

show :: Any -> String #

showList :: [Any] -> ShowS #

Eq Any Source # 
Instance details

Defined in Hydra.Langs.Protobuf.Any

Methods

(==) :: Any -> Any -> Bool #

(/=) :: Any -> Any -> Bool #

Ord Any Source # 
Instance details

Defined in Hydra.Langs.Protobuf.Any

Methods

compare :: Any -> Any -> Ordering #

(<) :: Any -> Any -> Bool #

(<=) :: Any -> Any -> Bool #

(>) :: Any -> Any -> Bool #

(>=) :: Any -> Any -> Bool #

max :: Any -> Any -> Any #

min :: Any -> Any -> Any #