packages feed

protocol-buffers-0.0.1: src/DescriptorProtos/FieldDescriptorProto/Label.hs

module DescriptorProtos.FieldDescriptorProto.Label
  (Label(..))
 where

import ProtocolBuffers.Header

data Label = LABEL_OPTIONAL
           | LABEL_REQUIRED
           | LABEL_REPEATED
  deriving (Show,Eq,Ord,Typeable,Data)