protocol-buffers-0.0.5: Text/DescriptorProtos/FieldDescriptorProto/Label.hs
module Text.DescriptorProtos.FieldDescriptorProto.Label
(Label(..))
where
import Text.ProtocolBuffers.Header
data Label = LABEL_OPTIONAL
| LABEL_REQUIRED
| LABEL_REPEATED
deriving (Show,Eq,Ord,Typeable)
$( makeMergeableEnum ''Label )