Safe Haskell | None |
---|---|
Language | Haskell2010 |
Network.GRPC.Common.Protobuf
Description
Common functionality for working with Protobuf
Synopsis
- data Protobuf serv (meth :: Symbol)
- newtype Proto msg = Proto msg
- getProto :: Proto msg -> msg
- data ProtobufError a = ProtobufError {}
- throwProtobufError :: ProtobufError (Proto Any) -> IO x
- throwProtobufErrorHom :: Message a => ProtobufError (Proto a) -> IO x
- toProtobufError :: GrpcException -> Either String (ProtobufError (Proto Any))
- toProtobufErrorHom :: Message a => GrpcException -> Either String (ProtobufError (Proto a))
- (&) :: a -> (a -> b) -> b
- (.~) :: ASetter s t a b -> b -> s -> t
- (^.) :: s -> Getting a s a -> a
- (%~) :: ASetter s t a b -> (a -> b) -> s -> t
- data StreamingType
- class HasField s (x :: Symbol) a | s x -> a where
- class FieldDefault value where
- fieldDefault :: value
- class Message msg where
- defMessage :: msg
Documentation
data Protobuf serv (meth :: Symbol) #
Instances
Constructors
Proto msg |
Instances
HasField (Proto rec) fldName fldType => HasField (fldName :: Symbol) (Proto rec) fldType | |
Defined in Network.GRPC.Spec.RPC.Protobuf | |
HasField (Proto rec) fldName fldType => HasField (fldName :: Symbol) (Proto rec) fldType | |
Defined in Network.GRPC.Spec.RPC.Protobuf | |
NFData msg => NFData (Proto msg) | |
Defined in Network.GRPC.Spec.RPC.Protobuf | |
Bounded msg => Bounded (Proto msg) | |
Enum msg => Enum (Proto msg) | |
Defined in Network.GRPC.Spec.RPC.Protobuf Methods succ :: Proto msg -> Proto msg # pred :: Proto msg -> Proto msg # fromEnum :: Proto msg -> Int # enumFrom :: Proto msg -> [Proto msg] # enumFromThen :: Proto msg -> Proto msg -> [Proto msg] # enumFromTo :: Proto msg -> Proto msg -> [Proto msg] # enumFromThenTo :: Proto msg -> Proto msg -> Proto msg -> [Proto msg] # | |
Show msg => Show (Proto msg) | |
Eq msg => Eq (Proto msg) | |
Ord msg => Ord (Proto msg) | |
FieldDefault msg => FieldDefault (Proto msg) | |
Defined in Network.GRPC.Spec.RPC.Protobuf Methods fieldDefault :: Proto msg # | |
Message msg => Message (Proto msg) | |
Defined in Network.GRPC.Spec.RPC.Protobuf Methods messageName :: Proxy (Proto msg) -> Text # packedMessageDescriptor :: Proxy (Proto msg) -> ByteString # packedFileDescriptor :: Proxy (Proto msg) -> ByteString # defMessage :: Proto msg # fieldsByTag :: Map Tag (FieldDescriptor (Proto msg)) # fieldsByTextFormatName :: Map String (FieldDescriptor (Proto msg)) # unknownFields :: Lens' (Proto msg) FieldSet # parseMessage :: Parser (Proto msg) # buildMessage :: Proto msg -> Builder # | |
MessageEnum msg => MessageEnum (Proto msg) | |
(HasField rec fldName x, RewrapField (Describe x) x fldType) => HasField (Proto rec) fldName fldType | |
RewrapField ('MkFieldDesc 'LabelImplicit 'NotScalar) a (Proto a) | |
Defined in Network.GRPC.Spec.RPC.Protobuf Methods rewrapField :: Proxy# ('MkFieldDesc 'LabelImplicit 'NotScalar) -> Lens' a (Proto a) | |
RewrapField ('MkFieldDesc 'LabelOptional 'NotScalar) (Maybe a) (Maybe (Proto a)) | |
Defined in Network.GRPC.Spec.RPC.Protobuf | |
RewrapField ('MkFieldDesc 'LabelRepeated 'NotScalar) (Vector a) (Vector (Proto a)) | |
Defined in Network.GRPC.Spec.RPC.Protobuf | |
RewrapField ('MkFieldDesc 'LabelRepeated 'NotScalar) [a] [Proto a] | |
Defined in Network.GRPC.Spec.RPC.Protobuf Methods rewrapField :: Proxy# ('MkFieldDesc 'LabelRepeated 'NotScalar) -> Lens' [a] [Proto a] | |
RewrapField ('MkFieldDesc 'LabelMap 'NotScalar) (Map k a) (Map k (Proto a)) | |
Defined in Network.GRPC.Spec.RPC.Protobuf |
Exceptions
data ProtobufError a Source #
gRPC exception with protobuf-specific error details
See also Status
and google.rpc.Status
.
Constructors
ProtobufError | |
Fields |
Instances
Functor ProtobufError Source # | |
Defined in Network.GRPC.Common.Protobuf Methods fmap :: (a -> b) -> ProtobufError a -> ProtobufError b # (<$) :: a -> ProtobufError b -> ProtobufError a # | |
Foldable ProtobufError Source # | |
Defined in Network.GRPC.Common.Protobuf Methods fold :: Monoid m => ProtobufError m -> m # foldMap :: Monoid m => (a -> m) -> ProtobufError a -> m # foldMap' :: Monoid m => (a -> m) -> ProtobufError a -> m # foldr :: (a -> b -> b) -> b -> ProtobufError a -> b # foldr' :: (a -> b -> b) -> b -> ProtobufError a -> b # foldl :: (b -> a -> b) -> b -> ProtobufError a -> b # foldl' :: (b -> a -> b) -> b -> ProtobufError a -> b # foldr1 :: (a -> a -> a) -> ProtobufError a -> a # foldl1 :: (a -> a -> a) -> ProtobufError a -> a # toList :: ProtobufError a -> [a] # null :: ProtobufError a -> Bool # length :: ProtobufError a -> Int # elem :: Eq a => a -> ProtobufError a -> Bool # maximum :: Ord a => ProtobufError a -> a # minimum :: Ord a => ProtobufError a -> a # sum :: Num a => ProtobufError a -> a # product :: Num a => ProtobufError a -> a # | |
Traversable ProtobufError Source # | |
Defined in Network.GRPC.Common.Protobuf Methods traverse :: Applicative f => (a -> f b) -> ProtobufError a -> f (ProtobufError b) # sequenceA :: Applicative f => ProtobufError (f a) -> f (ProtobufError a) # mapM :: Monad m => (a -> m b) -> ProtobufError a -> m (ProtobufError b) # sequence :: Monad m => ProtobufError (m a) -> m (ProtobufError a) # | |
Show a => Show (ProtobufError a) Source # | |
Defined in Network.GRPC.Common.Protobuf Methods showsPrec :: Int -> ProtobufError a -> ShowS # show :: ProtobufError a -> String # showList :: [ProtobufError a] -> ShowS # | |
Eq a => Eq (ProtobufError a) Source # | |
Defined in Network.GRPC.Common.Protobuf Methods (==) :: ProtobufError a -> ProtobufError a -> Bool # (/=) :: ProtobufError a -> ProtobufError a -> Bool # | |
Ord a => Ord (ProtobufError a) Source # | |
Defined in Network.GRPC.Common.Protobuf Methods compare :: ProtobufError a -> ProtobufError a -> Ordering # (<) :: ProtobufError a -> ProtobufError a -> Bool # (<=) :: ProtobufError a -> ProtobufError a -> Bool # (>) :: ProtobufError a -> ProtobufError a -> Bool # (>=) :: ProtobufError a -> ProtobufError a -> Bool # max :: ProtobufError a -> ProtobufError a -> ProtobufError a # min :: ProtobufError a -> ProtobufError a -> ProtobufError a # |
throwProtobufError :: ProtobufError (Proto Any) -> IO x Source #
Throw GrpcException
with Protobuf-specific details
throwProtobufErrorHom :: Message a => ProtobufError (Proto a) -> IO x Source #
Variation of throwProtobufError
for a homogenous list of details
The google.rpc.Status
message uses the Protobuf Any
type to store a
heterogenous list of details. In case that all elements in this list are
actually of the same type, we can provide a simpler API.
toProtobufError :: GrpcException -> Either String (ProtobufError (Proto Any)) Source #
Construct ProtobufError
by parsing grpcErrorDetails
as Status
See also throwProtobufError
.
toProtobufErrorHom :: Message a => GrpcException -> Either String (ProtobufError (Proto a)) Source #
Variation of toProtobufError
for a homogenous list of details
Re-exports
Data.Function
(&) :: a -> (a -> b) -> b infixl 1 #
&
is a reverse application operator. This provides notational
convenience. Its precedence is one higher than that of the forward
application operator $
, which allows &
to be nested in $
.
This is a version of
, where flip
id
id
is specialized from a -> a
to (a -> b) -> (a -> b)
which by the associativity of (->)
is (a -> b) -> a -> b
.
flipping this yields a -> (a -> b) -> b
which is the type signature of &
Examples
>>>
5 & (+1) & show
"6"
>>>
sqrt $ [1 / n^2 | n <- [1..1000]] & sum & (*6)
3.1406380562059946
@since base-4.8.0.0
Control.Lens
(.~) :: ASetter s t a b -> b -> s -> t infixr 4 #
Replace the target of a Lens
or all of the targets of a Setter
or Traversal
with a constant value.
This is an infix version of set
, provided for consistency with (.=
).
f<$
a ≡mapped
.~
f$
a
>>>
(a,b,c,d) & _4 .~ e
(a,b,c,e)
>>>
(42,"world") & _1 .~ "hello"
("hello","world")
>>>
(a,b) & both .~ c
(c,c)
(.~
) ::Setter
s t a b -> b -> s -> t (.~
) ::Iso
s t a b -> b -> s -> t (.~
) ::Lens
s t a b -> b -> s -> t (.~
) ::Traversal
s t a b -> b -> s -> t
(^.) :: s -> Getting a s a -> a infixl 8 #
View the value pointed to by a Getter
or Lens
or the
result of folding over all the results of a Fold
or
Traversal
that points at a monoidal values.
This is the same operation as view
with the arguments flipped.
The fixity and semantics are such that subsequent field accesses can be
performed with (.
).
>>>
(a,b)^._2
b
>>>
("hello","world")^._2
"world"
>>>
import Data.Complex
>>>
((0, 1 :+ 2), 3)^._1._2.to magnitude
2.23606797749979
(^.
) :: s ->Getter
s a -> a (^.
) ::Monoid
m => s ->Fold
s m -> m (^.
) :: s ->Iso'
s a -> a (^.
) :: s ->Lens'
s a -> a (^.
) ::Monoid
m => s ->Traversal'
s m -> m
(%~) :: ASetter s t a b -> (a -> b) -> s -> t infixr 4 #
Modifies the target of a Lens
or all of the targets of a Setter
or
Traversal
with a user supplied function.
This is an infix version of over
.
fmap
f ≡mapped
%~
ffmapDefault
f ≡traverse
%~
f
>>>
(a,b,c) & _3 %~ f
(a,b,f c)
>>>
(a,b) & both %~ f
(f a,f b)
>>>
_2 %~ length $ (1,"hello")
(1,5)
>>>
traverse %~ f $ [a,b,c]
[f a,f b,f c]
>>>
traverse %~ even $ [1,2,3]
[False,True,False]
>>>
traverse.traverse %~ length $ [["hello","world"],["!!!"]]
[[5,5],[3]]
(%~
) ::Setter
s t a b -> (a -> b) -> s -> t (%~
) ::Iso
s t a b -> (a -> b) -> s -> t (%~
) ::Lens
s t a b -> (a -> b) -> s -> t (%~
) ::Traversal
s t a b -> (a -> b) -> s -> t
Data.ProtoLens
data StreamingType #
Data type to be used as a promoted type for MethodStreamingType
.
Constructors
NonStreaming | |
ClientStreaming | |
ServerStreaming | |
BiDiStreaming |
Instances
Bounded StreamingType | |
Defined in Data.ProtoLens.Service.Types | |
Enum StreamingType | |
Defined in Data.ProtoLens.Service.Types Methods succ :: StreamingType -> StreamingType # pred :: StreamingType -> StreamingType # toEnum :: Int -> StreamingType # fromEnum :: StreamingType -> Int # enumFrom :: StreamingType -> [StreamingType] # enumFromThen :: StreamingType -> StreamingType -> [StreamingType] # enumFromTo :: StreamingType -> StreamingType -> [StreamingType] # enumFromThenTo :: StreamingType -> StreamingType -> StreamingType -> [StreamingType] # | |
Read StreamingType | |
Defined in Data.ProtoLens.Service.Types Methods readsPrec :: Int -> ReadS StreamingType # readList :: ReadS [StreamingType] # | |
Show StreamingType | |
Defined in Data.ProtoLens.Service.Types Methods showsPrec :: Int -> StreamingType -> ShowS # show :: StreamingType -> String # showList :: [StreamingType] -> ShowS # | |
Eq StreamingType | |
Defined in Data.ProtoLens.Service.Types Methods (==) :: StreamingType -> StreamingType -> Bool # (/=) :: StreamingType -> StreamingType -> Bool # | |
Ord StreamingType | |
Defined in Data.ProtoLens.Service.Types Methods compare :: StreamingType -> StreamingType -> Ordering # (<) :: StreamingType -> StreamingType -> Bool # (<=) :: StreamingType -> StreamingType -> Bool # (>) :: StreamingType -> StreamingType -> Bool # (>=) :: StreamingType -> StreamingType -> Bool # max :: StreamingType -> StreamingType -> StreamingType # min :: StreamingType -> StreamingType -> StreamingType # |
class HasField s (x :: Symbol) a | s x -> a where #
A type class for lens fields.
The instance HasField s x a
can be understood as "s
has a field named x
of type a
".
Instances
HasField OrcaLoadReport "applicationUtilization" Double | |
HasField OrcaLoadReport "cpuUtilization" Double | |
HasField OrcaLoadReport "eps" Double | |
HasField OrcaLoadReport "memUtilization" Double | |
HasField OrcaLoadReport "rps" Word64 | |
HasField OrcaLoadReport "rpsFractional" Double | |
HasField OrcaLoadReport'NamedMetricsEntry "key" Text | |
HasField OrcaLoadReport'NamedMetricsEntry "value" Double | |
HasField OrcaLoadReport'RequestCostEntry "key" Text | |
HasField OrcaLoadReport'RequestCostEntry "value" Double | |
HasField OrcaLoadReport'UtilizationEntry "key" Text | |
HasField OrcaLoadReport'UtilizationEntry "value" Double | |
HasField Status "code" Int32 | |
HasField Status "message" Text | |
HasField Any "typeUrl" Text | |
HasField Any "value" ByteString | |
Defined in Proto.Google.Protobuf.Any Methods fieldOf :: Functor f => Proxy# "value" -> (ByteString -> f ByteString) -> Any -> f Any # | |
HasField Api "name" Text | |
HasField Api "sourceContext" SourceContext | |
Defined in Proto.Google.Protobuf.Api Methods fieldOf :: Functor f => Proxy# "sourceContext" -> (SourceContext -> f SourceContext) -> Api -> f Api # | |
HasField Api "syntax" Syntax | |
HasField Api "version" Text | |
HasField Method "name" Text | |
HasField Method "requestStreaming" Bool | |
HasField Method "requestTypeUrl" Text | |
HasField Method "responseStreaming" Bool | |
HasField Method "responseTypeUrl" Text | |
HasField Method "syntax" Syntax | |
HasField Mixin "name" Text | |
HasField Mixin "root" Text | |
HasField CodeGeneratorRequest "compilerVersion" Version | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "compilerVersion" -> (Version -> f Version) -> CodeGeneratorRequest -> f CodeGeneratorRequest # | |
HasField CodeGeneratorRequest "parameter" Text | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "parameter" -> (Text -> f Text) -> CodeGeneratorRequest -> f CodeGeneratorRequest # | |
HasField CodeGeneratorResponse "error" Text | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "error" -> (Text -> f Text) -> CodeGeneratorResponse -> f CodeGeneratorResponse # | |
HasField CodeGeneratorResponse "maximumEdition" Int32 | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "maximumEdition" -> (Int32 -> f Int32) -> CodeGeneratorResponse -> f CodeGeneratorResponse # | |
HasField CodeGeneratorResponse "minimumEdition" Int32 | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "minimumEdition" -> (Int32 -> f Int32) -> CodeGeneratorResponse -> f CodeGeneratorResponse # | |
HasField CodeGeneratorResponse "supportedFeatures" Word64 | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "supportedFeatures" -> (Word64 -> f Word64) -> CodeGeneratorResponse -> f CodeGeneratorResponse # | |
HasField CodeGeneratorResponse'File "content" Text | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "content" -> (Text -> f Text) -> CodeGeneratorResponse'File -> f CodeGeneratorResponse'File # | |
HasField CodeGeneratorResponse'File "generatedCodeInfo" GeneratedCodeInfo | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "generatedCodeInfo" -> (GeneratedCodeInfo -> f GeneratedCodeInfo) -> CodeGeneratorResponse'File -> f CodeGeneratorResponse'File # | |
HasField CodeGeneratorResponse'File "insertionPoint" Text | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "insertionPoint" -> (Text -> f Text) -> CodeGeneratorResponse'File -> f CodeGeneratorResponse'File # | |
HasField CodeGeneratorResponse'File "name" Text | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "name" -> (Text -> f Text) -> CodeGeneratorResponse'File -> f CodeGeneratorResponse'File # | |
HasField Version "major" Int32 | |
HasField Version "minor" Int32 | |
HasField Version "patch" Int32 | |
HasField Version "suffix" Text | |
HasField DescriptorProto "name" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "name" -> (Text -> f Text) -> DescriptorProto -> f DescriptorProto # | |
HasField DescriptorProto "options" MessageOptions | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "options" -> (MessageOptions -> f MessageOptions) -> DescriptorProto -> f DescriptorProto # | |
HasField DescriptorProto'ExtensionRange "end" Int32 | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "end" -> (Int32 -> f Int32) -> DescriptorProto'ExtensionRange -> f DescriptorProto'ExtensionRange # | |
HasField DescriptorProto'ExtensionRange "options" ExtensionRangeOptions | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "options" -> (ExtensionRangeOptions -> f ExtensionRangeOptions) -> DescriptorProto'ExtensionRange -> f DescriptorProto'ExtensionRange # | |
HasField DescriptorProto'ExtensionRange "start" Int32 | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "start" -> (Int32 -> f Int32) -> DescriptorProto'ExtensionRange -> f DescriptorProto'ExtensionRange # | |
HasField DescriptorProto'ReservedRange "end" Int32 | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "end" -> (Int32 -> f Int32) -> DescriptorProto'ReservedRange -> f DescriptorProto'ReservedRange # | |
HasField DescriptorProto'ReservedRange "start" Int32 | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "start" -> (Int32 -> f Int32) -> DescriptorProto'ReservedRange -> f DescriptorProto'ReservedRange # | |
HasField EnumDescriptorProto "name" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "name" -> (Text -> f Text) -> EnumDescriptorProto -> f EnumDescriptorProto # | |
HasField EnumDescriptorProto "options" EnumOptions | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "options" -> (EnumOptions -> f EnumOptions) -> EnumDescriptorProto -> f EnumDescriptorProto # | |
HasField EnumDescriptorProto'EnumReservedRange "end" Int32 | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "end" -> (Int32 -> f Int32) -> EnumDescriptorProto'EnumReservedRange -> f EnumDescriptorProto'EnumReservedRange # | |
HasField EnumDescriptorProto'EnumReservedRange "start" Int32 | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "start" -> (Int32 -> f Int32) -> EnumDescriptorProto'EnumReservedRange -> f EnumDescriptorProto'EnumReservedRange # | |
HasField EnumOptions "allowAlias" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "allowAlias" -> (Bool -> f Bool) -> EnumOptions -> f EnumOptions # | |
HasField EnumOptions "deprecated" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "deprecated" -> (Bool -> f Bool) -> EnumOptions -> f EnumOptions # | |
HasField EnumOptions "deprecatedLegacyJsonFieldConflicts" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "deprecatedLegacyJsonFieldConflicts" -> (Bool -> f Bool) -> EnumOptions -> f EnumOptions # | |
HasField EnumOptions "features" FeatureSet | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "features" -> (FeatureSet -> f FeatureSet) -> EnumOptions -> f EnumOptions # | |
HasField EnumValueDescriptorProto "name" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "name" -> (Text -> f Text) -> EnumValueDescriptorProto -> f EnumValueDescriptorProto # | |
HasField EnumValueDescriptorProto "number" Int32 | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "number" -> (Int32 -> f Int32) -> EnumValueDescriptorProto -> f EnumValueDescriptorProto # | |
HasField EnumValueDescriptorProto "options" EnumValueOptions | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "options" -> (EnumValueOptions -> f EnumValueOptions) -> EnumValueDescriptorProto -> f EnumValueDescriptorProto # | |
HasField EnumValueOptions "debugRedact" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "debugRedact" -> (Bool -> f Bool) -> EnumValueOptions -> f EnumValueOptions # | |
HasField EnumValueOptions "deprecated" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "deprecated" -> (Bool -> f Bool) -> EnumValueOptions -> f EnumValueOptions # | |
HasField EnumValueOptions "featureSupport" FieldOptions'FeatureSupport | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "featureSupport" -> (FieldOptions'FeatureSupport -> f FieldOptions'FeatureSupport) -> EnumValueOptions -> f EnumValueOptions # | |
HasField EnumValueOptions "features" FeatureSet | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "features" -> (FeatureSet -> f FeatureSet) -> EnumValueOptions -> f EnumValueOptions # | |
HasField ExtensionRangeOptions "features" FeatureSet | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "features" -> (FeatureSet -> f FeatureSet) -> ExtensionRangeOptions -> f ExtensionRangeOptions # | |
HasField ExtensionRangeOptions "verification" ExtensionRangeOptions'VerificationState | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "verification" -> (ExtensionRangeOptions'VerificationState -> f ExtensionRangeOptions'VerificationState) -> ExtensionRangeOptions -> f ExtensionRangeOptions # | |
HasField ExtensionRangeOptions'Declaration "fullName" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "fullName" -> (Text -> f Text) -> ExtensionRangeOptions'Declaration -> f ExtensionRangeOptions'Declaration # | |
HasField ExtensionRangeOptions'Declaration "number" Int32 | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "number" -> (Int32 -> f Int32) -> ExtensionRangeOptions'Declaration -> f ExtensionRangeOptions'Declaration # | |
HasField ExtensionRangeOptions'Declaration "repeated" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "repeated" -> (Bool -> f Bool) -> ExtensionRangeOptions'Declaration -> f ExtensionRangeOptions'Declaration # | |
HasField ExtensionRangeOptions'Declaration "reserved" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "reserved" -> (Bool -> f Bool) -> ExtensionRangeOptions'Declaration -> f ExtensionRangeOptions'Declaration # | |
HasField ExtensionRangeOptions'Declaration "type'" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "type'" -> (Text -> f Text) -> ExtensionRangeOptions'Declaration -> f ExtensionRangeOptions'Declaration # | |
HasField FeatureSet "enumType" FeatureSet'EnumType | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "enumType" -> (FeatureSet'EnumType -> f FeatureSet'EnumType) -> FeatureSet -> f FeatureSet # | |
HasField FeatureSet "fieldPresence" FeatureSet'FieldPresence | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "fieldPresence" -> (FeatureSet'FieldPresence -> f FeatureSet'FieldPresence) -> FeatureSet -> f FeatureSet # | |
HasField FeatureSet "jsonFormat" FeatureSet'JsonFormat | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "jsonFormat" -> (FeatureSet'JsonFormat -> f FeatureSet'JsonFormat) -> FeatureSet -> f FeatureSet # | |
HasField FeatureSet "messageEncoding" FeatureSet'MessageEncoding | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "messageEncoding" -> (FeatureSet'MessageEncoding -> f FeatureSet'MessageEncoding) -> FeatureSet -> f FeatureSet # | |
HasField FeatureSet "repeatedFieldEncoding" FeatureSet'RepeatedFieldEncoding | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "repeatedFieldEncoding" -> (FeatureSet'RepeatedFieldEncoding -> f FeatureSet'RepeatedFieldEncoding) -> FeatureSet -> f FeatureSet # | |
HasField FeatureSet "utf8Validation" FeatureSet'Utf8Validation | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "utf8Validation" -> (FeatureSet'Utf8Validation -> f FeatureSet'Utf8Validation) -> FeatureSet -> f FeatureSet # | |
HasField FeatureSetDefaults "maximumEdition" Edition | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maximumEdition" -> (Edition -> f Edition) -> FeatureSetDefaults -> f FeatureSetDefaults # | |
HasField FeatureSetDefaults "minimumEdition" Edition | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "minimumEdition" -> (Edition -> f Edition) -> FeatureSetDefaults -> f FeatureSetDefaults # | |
HasField FeatureSetDefaults'FeatureSetEditionDefault "edition" Edition | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "edition" -> (Edition -> f Edition) -> FeatureSetDefaults'FeatureSetEditionDefault -> f FeatureSetDefaults'FeatureSetEditionDefault # | |
HasField FeatureSetDefaults'FeatureSetEditionDefault "fixedFeatures" FeatureSet | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "fixedFeatures" -> (FeatureSet -> f FeatureSet) -> FeatureSetDefaults'FeatureSetEditionDefault -> f FeatureSetDefaults'FeatureSetEditionDefault # | |
HasField FeatureSetDefaults'FeatureSetEditionDefault "overridableFeatures" FeatureSet | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "overridableFeatures" -> (FeatureSet -> f FeatureSet) -> FeatureSetDefaults'FeatureSetEditionDefault -> f FeatureSetDefaults'FeatureSetEditionDefault # | |
HasField FieldDescriptorProto "defaultValue" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "defaultValue" -> (Text -> f Text) -> FieldDescriptorProto -> f FieldDescriptorProto # | |
HasField FieldDescriptorProto "extendee" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "extendee" -> (Text -> f Text) -> FieldDescriptorProto -> f FieldDescriptorProto # | |
HasField FieldDescriptorProto "jsonName" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "jsonName" -> (Text -> f Text) -> FieldDescriptorProto -> f FieldDescriptorProto # | |
HasField FieldDescriptorProto "label" FieldDescriptorProto'Label | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "label" -> (FieldDescriptorProto'Label -> f FieldDescriptorProto'Label) -> FieldDescriptorProto -> f FieldDescriptorProto # | |
HasField FieldDescriptorProto "name" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "name" -> (Text -> f Text) -> FieldDescriptorProto -> f FieldDescriptorProto # | |
HasField FieldDescriptorProto "number" Int32 | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "number" -> (Int32 -> f Int32) -> FieldDescriptorProto -> f FieldDescriptorProto # | |
HasField FieldDescriptorProto "oneofIndex" Int32 | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "oneofIndex" -> (Int32 -> f Int32) -> FieldDescriptorProto -> f FieldDescriptorProto # | |
HasField FieldDescriptorProto "options" FieldOptions | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "options" -> (FieldOptions -> f FieldOptions) -> FieldDescriptorProto -> f FieldDescriptorProto # | |
HasField FieldDescriptorProto "proto3Optional" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "proto3Optional" -> (Bool -> f Bool) -> FieldDescriptorProto -> f FieldDescriptorProto # | |
HasField FieldDescriptorProto "type'" FieldDescriptorProto'Type | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "type'" -> (FieldDescriptorProto'Type -> f FieldDescriptorProto'Type) -> FieldDescriptorProto -> f FieldDescriptorProto # | |
HasField FieldDescriptorProto "typeName" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "typeName" -> (Text -> f Text) -> FieldDescriptorProto -> f FieldDescriptorProto # | |
HasField FieldOptions "ctype" FieldOptions'CType | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "ctype" -> (FieldOptions'CType -> f FieldOptions'CType) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "debugRedact" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "debugRedact" -> (Bool -> f Bool) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "deprecated" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "deprecated" -> (Bool -> f Bool) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "featureSupport" FieldOptions'FeatureSupport | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "featureSupport" -> (FieldOptions'FeatureSupport -> f FieldOptions'FeatureSupport) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "features" FeatureSet | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "features" -> (FeatureSet -> f FeatureSet) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "jstype" FieldOptions'JSType | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "jstype" -> (FieldOptions'JSType -> f FieldOptions'JSType) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "lazy" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "lazy" -> (Bool -> f Bool) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "packed" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "packed" -> (Bool -> f Bool) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "retention" FieldOptions'OptionRetention | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "retention" -> (FieldOptions'OptionRetention -> f FieldOptions'OptionRetention) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "unverifiedLazy" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "unverifiedLazy" -> (Bool -> f Bool) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "weak" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "weak" -> (Bool -> f Bool) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions'EditionDefault "edition" Edition | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "edition" -> (Edition -> f Edition) -> FieldOptions'EditionDefault -> f FieldOptions'EditionDefault # | |
HasField FieldOptions'EditionDefault "value" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "value" -> (Text -> f Text) -> FieldOptions'EditionDefault -> f FieldOptions'EditionDefault # | |
HasField FieldOptions'FeatureSupport "deprecationWarning" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "deprecationWarning" -> (Text -> f Text) -> FieldOptions'FeatureSupport -> f FieldOptions'FeatureSupport # | |
HasField FieldOptions'FeatureSupport "editionDeprecated" Edition | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "editionDeprecated" -> (Edition -> f Edition) -> FieldOptions'FeatureSupport -> f FieldOptions'FeatureSupport # | |
HasField FieldOptions'FeatureSupport "editionIntroduced" Edition | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "editionIntroduced" -> (Edition -> f Edition) -> FieldOptions'FeatureSupport -> f FieldOptions'FeatureSupport # | |
HasField FieldOptions'FeatureSupport "editionRemoved" Edition | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "editionRemoved" -> (Edition -> f Edition) -> FieldOptions'FeatureSupport -> f FieldOptions'FeatureSupport # | |
HasField FileDescriptorProto "edition" Edition | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "edition" -> (Edition -> f Edition) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "name" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "name" -> (Text -> f Text) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "options" FileOptions | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "options" -> (FileOptions -> f FileOptions) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "package" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "package" -> (Text -> f Text) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "sourceCodeInfo" SourceCodeInfo | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "sourceCodeInfo" -> (SourceCodeInfo -> f SourceCodeInfo) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "syntax" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "syntax" -> (Text -> f Text) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileOptions "ccEnableArenas" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "ccEnableArenas" -> (Bool -> f Bool) -> FileOptions -> f FileOptions # | |
HasField FileOptions "ccGenericServices" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "ccGenericServices" -> (Bool -> f Bool) -> FileOptions -> f FileOptions # | |
HasField FileOptions "csharpNamespace" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "csharpNamespace" -> (Text -> f Text) -> FileOptions -> f FileOptions # | |
HasField FileOptions "deprecated" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "deprecated" -> (Bool -> f Bool) -> FileOptions -> f FileOptions # | |
HasField FileOptions "features" FeatureSet | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "features" -> (FeatureSet -> f FeatureSet) -> FileOptions -> f FileOptions # | |
HasField FileOptions "goPackage" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "goPackage" -> (Text -> f Text) -> FileOptions -> f FileOptions # | |
HasField FileOptions "javaGenerateEqualsAndHash" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "javaGenerateEqualsAndHash" -> (Bool -> f Bool) -> FileOptions -> f FileOptions # | |
HasField FileOptions "javaGenericServices" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "javaGenericServices" -> (Bool -> f Bool) -> FileOptions -> f FileOptions # | |
HasField FileOptions "javaMultipleFiles" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "javaMultipleFiles" -> (Bool -> f Bool) -> FileOptions -> f FileOptions # | |
HasField FileOptions "javaOuterClassname" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "javaOuterClassname" -> (Text -> f Text) -> FileOptions -> f FileOptions # | |
HasField FileOptions "javaPackage" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "javaPackage" -> (Text -> f Text) -> FileOptions -> f FileOptions # | |
HasField FileOptions "javaStringCheckUtf8" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "javaStringCheckUtf8" -> (Bool -> f Bool) -> FileOptions -> f FileOptions # | |
HasField FileOptions "objcClassPrefix" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "objcClassPrefix" -> (Text -> f Text) -> FileOptions -> f FileOptions # | |
HasField FileOptions "optimizeFor" FileOptions'OptimizeMode | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "optimizeFor" -> (FileOptions'OptimizeMode -> f FileOptions'OptimizeMode) -> FileOptions -> f FileOptions # | |
HasField FileOptions "phpClassPrefix" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "phpClassPrefix" -> (Text -> f Text) -> FileOptions -> f FileOptions # | |
HasField FileOptions "phpMetadataNamespace" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "phpMetadataNamespace" -> (Text -> f Text) -> FileOptions -> f FileOptions # | |
HasField FileOptions "phpNamespace" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "phpNamespace" -> (Text -> f Text) -> FileOptions -> f FileOptions # | |
HasField FileOptions "pyGenericServices" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "pyGenericServices" -> (Bool -> f Bool) -> FileOptions -> f FileOptions # | |
HasField FileOptions "rubyPackage" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "rubyPackage" -> (Text -> f Text) -> FileOptions -> f FileOptions # | |
HasField FileOptions "swiftPrefix" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "swiftPrefix" -> (Text -> f Text) -> FileOptions -> f FileOptions # | |
HasField GeneratedCodeInfo'Annotation "begin" Int32 | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "begin" -> (Int32 -> f Int32) -> GeneratedCodeInfo'Annotation -> f GeneratedCodeInfo'Annotation # | |
HasField GeneratedCodeInfo'Annotation "end" Int32 | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "end" -> (Int32 -> f Int32) -> GeneratedCodeInfo'Annotation -> f GeneratedCodeInfo'Annotation # | |
HasField GeneratedCodeInfo'Annotation "semantic" GeneratedCodeInfo'Annotation'Semantic | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "semantic" -> (GeneratedCodeInfo'Annotation'Semantic -> f GeneratedCodeInfo'Annotation'Semantic) -> GeneratedCodeInfo'Annotation -> f GeneratedCodeInfo'Annotation # | |
HasField GeneratedCodeInfo'Annotation "sourceFile" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "sourceFile" -> (Text -> f Text) -> GeneratedCodeInfo'Annotation -> f GeneratedCodeInfo'Annotation # | |
HasField MessageOptions "deprecated" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "deprecated" -> (Bool -> f Bool) -> MessageOptions -> f MessageOptions # | |
HasField MessageOptions "deprecatedLegacyJsonFieldConflicts" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "deprecatedLegacyJsonFieldConflicts" -> (Bool -> f Bool) -> MessageOptions -> f MessageOptions # | |
HasField MessageOptions "features" FeatureSet | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "features" -> (FeatureSet -> f FeatureSet) -> MessageOptions -> f MessageOptions # | |
HasField MessageOptions "mapEntry" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "mapEntry" -> (Bool -> f Bool) -> MessageOptions -> f MessageOptions # | |
HasField MessageOptions "messageSetWireFormat" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "messageSetWireFormat" -> (Bool -> f Bool) -> MessageOptions -> f MessageOptions # | |
HasField MessageOptions "noStandardDescriptorAccessor" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "noStandardDescriptorAccessor" -> (Bool -> f Bool) -> MessageOptions -> f MessageOptions # | |
HasField MethodDescriptorProto "clientStreaming" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "clientStreaming" -> (Bool -> f Bool) -> MethodDescriptorProto -> f MethodDescriptorProto # | |
HasField MethodDescriptorProto "inputType" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "inputType" -> (Text -> f Text) -> MethodDescriptorProto -> f MethodDescriptorProto # | |
HasField MethodDescriptorProto "name" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "name" -> (Text -> f Text) -> MethodDescriptorProto -> f MethodDescriptorProto # | |
HasField MethodDescriptorProto "options" MethodOptions | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "options" -> (MethodOptions -> f MethodOptions) -> MethodDescriptorProto -> f MethodDescriptorProto # | |
HasField MethodDescriptorProto "outputType" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "outputType" -> (Text -> f Text) -> MethodDescriptorProto -> f MethodDescriptorProto # | |
HasField MethodDescriptorProto "serverStreaming" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "serverStreaming" -> (Bool -> f Bool) -> MethodDescriptorProto -> f MethodDescriptorProto # | |
HasField MethodOptions "deprecated" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "deprecated" -> (Bool -> f Bool) -> MethodOptions -> f MethodOptions # | |
HasField MethodOptions "features" FeatureSet | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "features" -> (FeatureSet -> f FeatureSet) -> MethodOptions -> f MethodOptions # | |
HasField MethodOptions "idempotencyLevel" MethodOptions'IdempotencyLevel | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "idempotencyLevel" -> (MethodOptions'IdempotencyLevel -> f MethodOptions'IdempotencyLevel) -> MethodOptions -> f MethodOptions # | |
HasField OneofDescriptorProto "name" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "name" -> (Text -> f Text) -> OneofDescriptorProto -> f OneofDescriptorProto # | |
HasField OneofDescriptorProto "options" OneofOptions | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "options" -> (OneofOptions -> f OneofOptions) -> OneofDescriptorProto -> f OneofDescriptorProto # | |
HasField OneofOptions "features" FeatureSet | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "features" -> (FeatureSet -> f FeatureSet) -> OneofOptions -> f OneofOptions # | |
HasField ServiceDescriptorProto "name" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "name" -> (Text -> f Text) -> ServiceDescriptorProto -> f ServiceDescriptorProto # | |
HasField ServiceDescriptorProto "options" ServiceOptions | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "options" -> (ServiceOptions -> f ServiceOptions) -> ServiceDescriptorProto -> f ServiceDescriptorProto # | |
HasField ServiceOptions "deprecated" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "deprecated" -> (Bool -> f Bool) -> ServiceOptions -> f ServiceOptions # | |
HasField ServiceOptions "features" FeatureSet | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "features" -> (FeatureSet -> f FeatureSet) -> ServiceOptions -> f ServiceOptions # | |
HasField SourceCodeInfo'Location "leadingComments" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "leadingComments" -> (Text -> f Text) -> SourceCodeInfo'Location -> f SourceCodeInfo'Location # | |
HasField SourceCodeInfo'Location "trailingComments" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "trailingComments" -> (Text -> f Text) -> SourceCodeInfo'Location -> f SourceCodeInfo'Location # | |
HasField UninterpretedOption "aggregateValue" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "aggregateValue" -> (Text -> f Text) -> UninterpretedOption -> f UninterpretedOption # | |
HasField UninterpretedOption "doubleValue" Double | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "doubleValue" -> (Double -> f Double) -> UninterpretedOption -> f UninterpretedOption # | |
HasField UninterpretedOption "identifierValue" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "identifierValue" -> (Text -> f Text) -> UninterpretedOption -> f UninterpretedOption # | |
HasField UninterpretedOption "negativeIntValue" Int64 | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "negativeIntValue" -> (Int64 -> f Int64) -> UninterpretedOption -> f UninterpretedOption # | |
HasField UninterpretedOption "positiveIntValue" Word64 | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "positiveIntValue" -> (Word64 -> f Word64) -> UninterpretedOption -> f UninterpretedOption # | |
HasField UninterpretedOption "stringValue" ByteString | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "stringValue" -> (ByteString -> f ByteString) -> UninterpretedOption -> f UninterpretedOption # | |
HasField UninterpretedOption'NamePart "isExtension" Bool | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "isExtension" -> (Bool -> f Bool) -> UninterpretedOption'NamePart -> f UninterpretedOption'NamePart # | |
HasField UninterpretedOption'NamePart "namePart" Text | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "namePart" -> (Text -> f Text) -> UninterpretedOption'NamePart -> f UninterpretedOption'NamePart # | |
HasField Duration "nanos" Int32 | |
HasField Duration "seconds" Int64 | |
HasField SourceContext "fileName" Text | |
Defined in Proto.Google.Protobuf.SourceContext Methods fieldOf :: Functor f => Proxy# "fileName" -> (Text -> f Text) -> SourceContext -> f SourceContext # | |
HasField Struct'FieldsEntry "key" Text | |
Defined in Proto.Google.Protobuf.Struct Methods fieldOf :: Functor f => Proxy# "key" -> (Text -> f Text) -> Struct'FieldsEntry -> f Struct'FieldsEntry # | |
HasField Struct'FieldsEntry "value" Value | |
Defined in Proto.Google.Protobuf.Struct Methods fieldOf :: Functor f => Proxy# "value" -> (Value -> f Value) -> Struct'FieldsEntry -> f Struct'FieldsEntry # | |
HasField Value "boolValue" Bool | |
HasField Value "listValue" ListValue | |
HasField Value "nullValue" NullValue | |
HasField Value "numberValue" Double | |
HasField Value "stringValue" Text | |
HasField Value "structValue" Struct | |
HasField Timestamp "nanos" Int32 | |
HasField Timestamp "seconds" Int64 | |
HasField Enum "edition" Text | |
HasField Enum "name" Text | |
HasField Enum "sourceContext" SourceContext | |
Defined in Proto.Google.Protobuf.Type Methods fieldOf :: Functor f => Proxy# "sourceContext" -> (SourceContext -> f SourceContext) -> Enum -> f Enum # | |
HasField Enum "syntax" Syntax | |
HasField EnumValue "name" Text | |
HasField EnumValue "number" Int32 | |
HasField Field "cardinality" Field'Cardinality | |
Defined in Proto.Google.Protobuf.Type Methods fieldOf :: Functor f => Proxy# "cardinality" -> (Field'Cardinality -> f Field'Cardinality) -> Field -> f Field # | |
HasField Field "defaultValue" Text | |
HasField Field "jsonName" Text | |
HasField Field "kind" Field'Kind | |
Defined in Proto.Google.Protobuf.Type Methods fieldOf :: Functor f => Proxy# "kind" -> (Field'Kind -> f Field'Kind) -> Field -> f Field # | |
HasField Field "name" Text | |
HasField Field "number" Int32 | |
HasField Field "oneofIndex" Int32 | |
HasField Field "packed" Bool | |
HasField Field "typeUrl" Text | |
HasField Option "name" Text | |
HasField Option "value" Any | |
HasField Type "edition" Text | |
HasField Type "name" Text | |
HasField Type "sourceContext" SourceContext | |
Defined in Proto.Google.Protobuf.Type Methods fieldOf :: Functor f => Proxy# "sourceContext" -> (SourceContext -> f SourceContext) -> Type -> f Type # | |
HasField Type "syntax" Syntax | |
HasField BoolValue "value" Bool | |
HasField BytesValue "value" ByteString | |
Defined in Proto.Google.Protobuf.Wrappers Methods fieldOf :: Functor f => Proxy# "value" -> (ByteString -> f ByteString) -> BytesValue -> f BytesValue # | |
HasField DoubleValue "value" Double | |
Defined in Proto.Google.Protobuf.Wrappers Methods fieldOf :: Functor f => Proxy# "value" -> (Double -> f Double) -> DoubleValue -> f DoubleValue # | |
HasField FloatValue "value" Float | |
Defined in Proto.Google.Protobuf.Wrappers Methods fieldOf :: Functor f => Proxy# "value" -> (Float -> f Float) -> FloatValue -> f FloatValue # | |
HasField Int32Value "value" Int32 | |
Defined in Proto.Google.Protobuf.Wrappers Methods fieldOf :: Functor f => Proxy# "value" -> (Int32 -> f Int32) -> Int32Value -> f Int32Value # | |
HasField Int64Value "value" Int64 | |
Defined in Proto.Google.Protobuf.Wrappers Methods fieldOf :: Functor f => Proxy# "value" -> (Int64 -> f Int64) -> Int64Value -> f Int64Value # | |
HasField StringValue "value" Text | |
Defined in Proto.Google.Protobuf.Wrappers Methods fieldOf :: Functor f => Proxy# "value" -> (Text -> f Text) -> StringValue -> f StringValue # | |
HasField UInt32Value "value" Word32 | |
Defined in Proto.Google.Protobuf.Wrappers Methods fieldOf :: Functor f => Proxy# "value" -> (Word32 -> f Word32) -> UInt32Value -> f UInt32Value # | |
HasField UInt64Value "value" Word64 | |
Defined in Proto.Google.Protobuf.Wrappers Methods fieldOf :: Functor f => Proxy# "value" -> (Word64 -> f Word64) -> UInt64Value -> f UInt64Value # | |
HasField Status "details" [Any] | |
HasField Status "vec'details" (Vector Any) | |
HasField Api "maybe'sourceContext" (Maybe SourceContext) | |
Defined in Proto.Google.Protobuf.Api Methods fieldOf :: Functor f => Proxy# "maybe'sourceContext" -> (Maybe SourceContext -> f (Maybe SourceContext)) -> Api -> f Api # | |
HasField Api "methods" [Method] | |
HasField Api "mixins" [Mixin] | |
HasField Api "options" [Option] | |
HasField Api "vec'methods" (Vector Method) | |
HasField Api "vec'mixins" (Vector Mixin) | |
HasField Api "vec'options" (Vector Option) | |
HasField Method "options" [Option] | |
HasField Method "vec'options" (Vector Option) | |
HasField CodeGeneratorRequest "fileToGenerate" [Text] | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "fileToGenerate" -> ([Text] -> f [Text]) -> CodeGeneratorRequest -> f CodeGeneratorRequest # | |
HasField CodeGeneratorRequest "maybe'compilerVersion" (Maybe Version) | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "maybe'compilerVersion" -> (Maybe Version -> f (Maybe Version)) -> CodeGeneratorRequest -> f CodeGeneratorRequest # | |
HasField CodeGeneratorRequest "maybe'parameter" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "maybe'parameter" -> (Maybe Text -> f (Maybe Text)) -> CodeGeneratorRequest -> f CodeGeneratorRequest # | |
HasField CodeGeneratorRequest "protoFile" [FileDescriptorProto] | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "protoFile" -> ([FileDescriptorProto] -> f [FileDescriptorProto]) -> CodeGeneratorRequest -> f CodeGeneratorRequest # | |
HasField CodeGeneratorRequest "sourceFileDescriptors" [FileDescriptorProto] | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "sourceFileDescriptors" -> ([FileDescriptorProto] -> f [FileDescriptorProto]) -> CodeGeneratorRequest -> f CodeGeneratorRequest # | |
HasField CodeGeneratorRequest "vec'fileToGenerate" (Vector Text) | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "vec'fileToGenerate" -> (Vector Text -> f (Vector Text)) -> CodeGeneratorRequest -> f CodeGeneratorRequest # | |
HasField CodeGeneratorRequest "vec'protoFile" (Vector FileDescriptorProto) | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "vec'protoFile" -> (Vector FileDescriptorProto -> f (Vector FileDescriptorProto)) -> CodeGeneratorRequest -> f CodeGeneratorRequest # | |
HasField CodeGeneratorRequest "vec'sourceFileDescriptors" (Vector FileDescriptorProto) | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "vec'sourceFileDescriptors" -> (Vector FileDescriptorProto -> f (Vector FileDescriptorProto)) -> CodeGeneratorRequest -> f CodeGeneratorRequest # | |
HasField CodeGeneratorResponse "file" [CodeGeneratorResponse'File] | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "file" -> ([CodeGeneratorResponse'File] -> f [CodeGeneratorResponse'File]) -> CodeGeneratorResponse -> f CodeGeneratorResponse # | |
HasField CodeGeneratorResponse "maybe'error" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "maybe'error" -> (Maybe Text -> f (Maybe Text)) -> CodeGeneratorResponse -> f CodeGeneratorResponse # | |
HasField CodeGeneratorResponse "maybe'maximumEdition" (Maybe Int32) | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "maybe'maximumEdition" -> (Maybe Int32 -> f (Maybe Int32)) -> CodeGeneratorResponse -> f CodeGeneratorResponse # | |
HasField CodeGeneratorResponse "maybe'minimumEdition" (Maybe Int32) | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "maybe'minimumEdition" -> (Maybe Int32 -> f (Maybe Int32)) -> CodeGeneratorResponse -> f CodeGeneratorResponse # | |
HasField CodeGeneratorResponse "maybe'supportedFeatures" (Maybe Word64) | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "maybe'supportedFeatures" -> (Maybe Word64 -> f (Maybe Word64)) -> CodeGeneratorResponse -> f CodeGeneratorResponse # | |
HasField CodeGeneratorResponse "vec'file" (Vector CodeGeneratorResponse'File) | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "vec'file" -> (Vector CodeGeneratorResponse'File -> f (Vector CodeGeneratorResponse'File)) -> CodeGeneratorResponse -> f CodeGeneratorResponse # | |
HasField CodeGeneratorResponse'File "maybe'content" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "maybe'content" -> (Maybe Text -> f (Maybe Text)) -> CodeGeneratorResponse'File -> f CodeGeneratorResponse'File # | |
HasField CodeGeneratorResponse'File "maybe'generatedCodeInfo" (Maybe GeneratedCodeInfo) | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "maybe'generatedCodeInfo" -> (Maybe GeneratedCodeInfo -> f (Maybe GeneratedCodeInfo)) -> CodeGeneratorResponse'File -> f CodeGeneratorResponse'File # | |
HasField CodeGeneratorResponse'File "maybe'insertionPoint" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "maybe'insertionPoint" -> (Maybe Text -> f (Maybe Text)) -> CodeGeneratorResponse'File -> f CodeGeneratorResponse'File # | |
HasField CodeGeneratorResponse'File "maybe'name" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Compiler.Plugin Methods fieldOf :: Functor f => Proxy# "maybe'name" -> (Maybe Text -> f (Maybe Text)) -> CodeGeneratorResponse'File -> f CodeGeneratorResponse'File # | |
HasField Version "maybe'major" (Maybe Int32) | |
HasField Version "maybe'minor" (Maybe Int32) | |
HasField Version "maybe'patch" (Maybe Int32) | |
HasField Version "maybe'suffix" (Maybe Text) | |
HasField DescriptorProto "enumType" [EnumDescriptorProto] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "enumType" -> ([EnumDescriptorProto] -> f [EnumDescriptorProto]) -> DescriptorProto -> f DescriptorProto # | |
HasField DescriptorProto "extension" [FieldDescriptorProto] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "extension" -> ([FieldDescriptorProto] -> f [FieldDescriptorProto]) -> DescriptorProto -> f DescriptorProto # | |
HasField DescriptorProto "extensionRange" [DescriptorProto'ExtensionRange] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "extensionRange" -> ([DescriptorProto'ExtensionRange] -> f [DescriptorProto'ExtensionRange]) -> DescriptorProto -> f DescriptorProto # | |
HasField DescriptorProto "field" [FieldDescriptorProto] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "field" -> ([FieldDescriptorProto] -> f [FieldDescriptorProto]) -> DescriptorProto -> f DescriptorProto # | |
HasField DescriptorProto "maybe'name" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'name" -> (Maybe Text -> f (Maybe Text)) -> DescriptorProto -> f DescriptorProto # | |
HasField DescriptorProto "maybe'options" (Maybe MessageOptions) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'options" -> (Maybe MessageOptions -> f (Maybe MessageOptions)) -> DescriptorProto -> f DescriptorProto # | |
HasField DescriptorProto "nestedType" [DescriptorProto] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "nestedType" -> ([DescriptorProto] -> f [DescriptorProto]) -> DescriptorProto -> f DescriptorProto # | |
HasField DescriptorProto "oneofDecl" [OneofDescriptorProto] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "oneofDecl" -> ([OneofDescriptorProto] -> f [OneofDescriptorProto]) -> DescriptorProto -> f DescriptorProto # | |
HasField DescriptorProto "reservedName" [Text] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "reservedName" -> ([Text] -> f [Text]) -> DescriptorProto -> f DescriptorProto # | |
HasField DescriptorProto "reservedRange" [DescriptorProto'ReservedRange] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "reservedRange" -> ([DescriptorProto'ReservedRange] -> f [DescriptorProto'ReservedRange]) -> DescriptorProto -> f DescriptorProto # | |
HasField DescriptorProto "vec'enumType" (Vector EnumDescriptorProto) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'enumType" -> (Vector EnumDescriptorProto -> f (Vector EnumDescriptorProto)) -> DescriptorProto -> f DescriptorProto # | |
HasField DescriptorProto "vec'extension" (Vector FieldDescriptorProto) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'extension" -> (Vector FieldDescriptorProto -> f (Vector FieldDescriptorProto)) -> DescriptorProto -> f DescriptorProto # | |
HasField DescriptorProto "vec'extensionRange" (Vector DescriptorProto'ExtensionRange) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'extensionRange" -> (Vector DescriptorProto'ExtensionRange -> f (Vector DescriptorProto'ExtensionRange)) -> DescriptorProto -> f DescriptorProto # | |
HasField DescriptorProto "vec'field" (Vector FieldDescriptorProto) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'field" -> (Vector FieldDescriptorProto -> f (Vector FieldDescriptorProto)) -> DescriptorProto -> f DescriptorProto # | |
HasField DescriptorProto "vec'nestedType" (Vector DescriptorProto) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'nestedType" -> (Vector DescriptorProto -> f (Vector DescriptorProto)) -> DescriptorProto -> f DescriptorProto # | |
HasField DescriptorProto "vec'oneofDecl" (Vector OneofDescriptorProto) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'oneofDecl" -> (Vector OneofDescriptorProto -> f (Vector OneofDescriptorProto)) -> DescriptorProto -> f DescriptorProto # | |
HasField DescriptorProto "vec'reservedName" (Vector Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'reservedName" -> (Vector Text -> f (Vector Text)) -> DescriptorProto -> f DescriptorProto # | |
HasField DescriptorProto "vec'reservedRange" (Vector DescriptorProto'ReservedRange) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'reservedRange" -> (Vector DescriptorProto'ReservedRange -> f (Vector DescriptorProto'ReservedRange)) -> DescriptorProto -> f DescriptorProto # | |
HasField DescriptorProto'ExtensionRange "maybe'end" (Maybe Int32) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'end" -> (Maybe Int32 -> f (Maybe Int32)) -> DescriptorProto'ExtensionRange -> f DescriptorProto'ExtensionRange # | |
HasField DescriptorProto'ExtensionRange "maybe'options" (Maybe ExtensionRangeOptions) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'options" -> (Maybe ExtensionRangeOptions -> f (Maybe ExtensionRangeOptions)) -> DescriptorProto'ExtensionRange -> f DescriptorProto'ExtensionRange # | |
HasField DescriptorProto'ExtensionRange "maybe'start" (Maybe Int32) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'start" -> (Maybe Int32 -> f (Maybe Int32)) -> DescriptorProto'ExtensionRange -> f DescriptorProto'ExtensionRange # | |
HasField DescriptorProto'ReservedRange "maybe'end" (Maybe Int32) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'end" -> (Maybe Int32 -> f (Maybe Int32)) -> DescriptorProto'ReservedRange -> f DescriptorProto'ReservedRange # | |
HasField DescriptorProto'ReservedRange "maybe'start" (Maybe Int32) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'start" -> (Maybe Int32 -> f (Maybe Int32)) -> DescriptorProto'ReservedRange -> f DescriptorProto'ReservedRange # | |
HasField EnumDescriptorProto "maybe'name" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'name" -> (Maybe Text -> f (Maybe Text)) -> EnumDescriptorProto -> f EnumDescriptorProto # | |
HasField EnumDescriptorProto "maybe'options" (Maybe EnumOptions) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'options" -> (Maybe EnumOptions -> f (Maybe EnumOptions)) -> EnumDescriptorProto -> f EnumDescriptorProto # | |
HasField EnumDescriptorProto "reservedName" [Text] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "reservedName" -> ([Text] -> f [Text]) -> EnumDescriptorProto -> f EnumDescriptorProto # | |
HasField EnumDescriptorProto "reservedRange" [EnumDescriptorProto'EnumReservedRange] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "reservedRange" -> ([EnumDescriptorProto'EnumReservedRange] -> f [EnumDescriptorProto'EnumReservedRange]) -> EnumDescriptorProto -> f EnumDescriptorProto # | |
HasField EnumDescriptorProto "value" [EnumValueDescriptorProto] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "value" -> ([EnumValueDescriptorProto] -> f [EnumValueDescriptorProto]) -> EnumDescriptorProto -> f EnumDescriptorProto # | |
HasField EnumDescriptorProto "vec'reservedName" (Vector Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'reservedName" -> (Vector Text -> f (Vector Text)) -> EnumDescriptorProto -> f EnumDescriptorProto # | |
HasField EnumDescriptorProto "vec'reservedRange" (Vector EnumDescriptorProto'EnumReservedRange) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'reservedRange" -> (Vector EnumDescriptorProto'EnumReservedRange -> f (Vector EnumDescriptorProto'EnumReservedRange)) -> EnumDescriptorProto -> f EnumDescriptorProto # | |
HasField EnumDescriptorProto "vec'value" (Vector EnumValueDescriptorProto) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'value" -> (Vector EnumValueDescriptorProto -> f (Vector EnumValueDescriptorProto)) -> EnumDescriptorProto -> f EnumDescriptorProto # | |
HasField EnumDescriptorProto'EnumReservedRange "maybe'end" (Maybe Int32) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'end" -> (Maybe Int32 -> f (Maybe Int32)) -> EnumDescriptorProto'EnumReservedRange -> f EnumDescriptorProto'EnumReservedRange # | |
HasField EnumDescriptorProto'EnumReservedRange "maybe'start" (Maybe Int32) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'start" -> (Maybe Int32 -> f (Maybe Int32)) -> EnumDescriptorProto'EnumReservedRange -> f EnumDescriptorProto'EnumReservedRange # | |
HasField EnumOptions "maybe'allowAlias" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'allowAlias" -> (Maybe Bool -> f (Maybe Bool)) -> EnumOptions -> f EnumOptions # | |
HasField EnumOptions "maybe'deprecated" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'deprecated" -> (Maybe Bool -> f (Maybe Bool)) -> EnumOptions -> f EnumOptions # | |
HasField EnumOptions "maybe'deprecatedLegacyJsonFieldConflicts" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'deprecatedLegacyJsonFieldConflicts" -> (Maybe Bool -> f (Maybe Bool)) -> EnumOptions -> f EnumOptions # | |
HasField EnumOptions "maybe'features" (Maybe FeatureSet) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'features" -> (Maybe FeatureSet -> f (Maybe FeatureSet)) -> EnumOptions -> f EnumOptions # | |
HasField EnumOptions "uninterpretedOption" [UninterpretedOption] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "uninterpretedOption" -> ([UninterpretedOption] -> f [UninterpretedOption]) -> EnumOptions -> f EnumOptions # | |
HasField EnumOptions "vec'uninterpretedOption" (Vector UninterpretedOption) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'uninterpretedOption" -> (Vector UninterpretedOption -> f (Vector UninterpretedOption)) -> EnumOptions -> f EnumOptions # | |
HasField EnumValueDescriptorProto "maybe'name" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'name" -> (Maybe Text -> f (Maybe Text)) -> EnumValueDescriptorProto -> f EnumValueDescriptorProto # | |
HasField EnumValueDescriptorProto "maybe'number" (Maybe Int32) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'number" -> (Maybe Int32 -> f (Maybe Int32)) -> EnumValueDescriptorProto -> f EnumValueDescriptorProto # | |
HasField EnumValueDescriptorProto "maybe'options" (Maybe EnumValueOptions) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'options" -> (Maybe EnumValueOptions -> f (Maybe EnumValueOptions)) -> EnumValueDescriptorProto -> f EnumValueDescriptorProto # | |
HasField EnumValueOptions "maybe'debugRedact" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'debugRedact" -> (Maybe Bool -> f (Maybe Bool)) -> EnumValueOptions -> f EnumValueOptions # | |
HasField EnumValueOptions "maybe'deprecated" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'deprecated" -> (Maybe Bool -> f (Maybe Bool)) -> EnumValueOptions -> f EnumValueOptions # | |
HasField EnumValueOptions "maybe'featureSupport" (Maybe FieldOptions'FeatureSupport) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'featureSupport" -> (Maybe FieldOptions'FeatureSupport -> f (Maybe FieldOptions'FeatureSupport)) -> EnumValueOptions -> f EnumValueOptions # | |
HasField EnumValueOptions "maybe'features" (Maybe FeatureSet) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'features" -> (Maybe FeatureSet -> f (Maybe FeatureSet)) -> EnumValueOptions -> f EnumValueOptions # | |
HasField EnumValueOptions "uninterpretedOption" [UninterpretedOption] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "uninterpretedOption" -> ([UninterpretedOption] -> f [UninterpretedOption]) -> EnumValueOptions -> f EnumValueOptions # | |
HasField EnumValueOptions "vec'uninterpretedOption" (Vector UninterpretedOption) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'uninterpretedOption" -> (Vector UninterpretedOption -> f (Vector UninterpretedOption)) -> EnumValueOptions -> f EnumValueOptions # | |
HasField ExtensionRangeOptions "declaration" [ExtensionRangeOptions'Declaration] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "declaration" -> ([ExtensionRangeOptions'Declaration] -> f [ExtensionRangeOptions'Declaration]) -> ExtensionRangeOptions -> f ExtensionRangeOptions # | |
HasField ExtensionRangeOptions "maybe'features" (Maybe FeatureSet) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'features" -> (Maybe FeatureSet -> f (Maybe FeatureSet)) -> ExtensionRangeOptions -> f ExtensionRangeOptions # | |
HasField ExtensionRangeOptions "maybe'verification" (Maybe ExtensionRangeOptions'VerificationState) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'verification" -> (Maybe ExtensionRangeOptions'VerificationState -> f (Maybe ExtensionRangeOptions'VerificationState)) -> ExtensionRangeOptions -> f ExtensionRangeOptions # | |
HasField ExtensionRangeOptions "uninterpretedOption" [UninterpretedOption] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "uninterpretedOption" -> ([UninterpretedOption] -> f [UninterpretedOption]) -> ExtensionRangeOptions -> f ExtensionRangeOptions # | |
HasField ExtensionRangeOptions "vec'declaration" (Vector ExtensionRangeOptions'Declaration) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'declaration" -> (Vector ExtensionRangeOptions'Declaration -> f (Vector ExtensionRangeOptions'Declaration)) -> ExtensionRangeOptions -> f ExtensionRangeOptions # | |
HasField ExtensionRangeOptions "vec'uninterpretedOption" (Vector UninterpretedOption) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'uninterpretedOption" -> (Vector UninterpretedOption -> f (Vector UninterpretedOption)) -> ExtensionRangeOptions -> f ExtensionRangeOptions # | |
HasField ExtensionRangeOptions'Declaration "maybe'fullName" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'fullName" -> (Maybe Text -> f (Maybe Text)) -> ExtensionRangeOptions'Declaration -> f ExtensionRangeOptions'Declaration # | |
HasField ExtensionRangeOptions'Declaration "maybe'number" (Maybe Int32) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'number" -> (Maybe Int32 -> f (Maybe Int32)) -> ExtensionRangeOptions'Declaration -> f ExtensionRangeOptions'Declaration # | |
HasField ExtensionRangeOptions'Declaration "maybe'repeated" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'repeated" -> (Maybe Bool -> f (Maybe Bool)) -> ExtensionRangeOptions'Declaration -> f ExtensionRangeOptions'Declaration # | |
HasField ExtensionRangeOptions'Declaration "maybe'reserved" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'reserved" -> (Maybe Bool -> f (Maybe Bool)) -> ExtensionRangeOptions'Declaration -> f ExtensionRangeOptions'Declaration # | |
HasField ExtensionRangeOptions'Declaration "maybe'type'" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'type'" -> (Maybe Text -> f (Maybe Text)) -> ExtensionRangeOptions'Declaration -> f ExtensionRangeOptions'Declaration # | |
HasField FeatureSet "maybe'enumType" (Maybe FeatureSet'EnumType) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'enumType" -> (Maybe FeatureSet'EnumType -> f (Maybe FeatureSet'EnumType)) -> FeatureSet -> f FeatureSet # | |
HasField FeatureSet "maybe'fieldPresence" (Maybe FeatureSet'FieldPresence) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'fieldPresence" -> (Maybe FeatureSet'FieldPresence -> f (Maybe FeatureSet'FieldPresence)) -> FeatureSet -> f FeatureSet # | |
HasField FeatureSet "maybe'jsonFormat" (Maybe FeatureSet'JsonFormat) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'jsonFormat" -> (Maybe FeatureSet'JsonFormat -> f (Maybe FeatureSet'JsonFormat)) -> FeatureSet -> f FeatureSet # | |
HasField FeatureSet "maybe'messageEncoding" (Maybe FeatureSet'MessageEncoding) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'messageEncoding" -> (Maybe FeatureSet'MessageEncoding -> f (Maybe FeatureSet'MessageEncoding)) -> FeatureSet -> f FeatureSet # | |
HasField FeatureSet "maybe'repeatedFieldEncoding" (Maybe FeatureSet'RepeatedFieldEncoding) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'repeatedFieldEncoding" -> (Maybe FeatureSet'RepeatedFieldEncoding -> f (Maybe FeatureSet'RepeatedFieldEncoding)) -> FeatureSet -> f FeatureSet # | |
HasField FeatureSet "maybe'utf8Validation" (Maybe FeatureSet'Utf8Validation) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'utf8Validation" -> (Maybe FeatureSet'Utf8Validation -> f (Maybe FeatureSet'Utf8Validation)) -> FeatureSet -> f FeatureSet # | |
HasField FeatureSetDefaults "defaults" [FeatureSetDefaults'FeatureSetEditionDefault] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "defaults" -> ([FeatureSetDefaults'FeatureSetEditionDefault] -> f [FeatureSetDefaults'FeatureSetEditionDefault]) -> FeatureSetDefaults -> f FeatureSetDefaults # | |
HasField FeatureSetDefaults "maybe'maximumEdition" (Maybe Edition) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'maximumEdition" -> (Maybe Edition -> f (Maybe Edition)) -> FeatureSetDefaults -> f FeatureSetDefaults # | |
HasField FeatureSetDefaults "maybe'minimumEdition" (Maybe Edition) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'minimumEdition" -> (Maybe Edition -> f (Maybe Edition)) -> FeatureSetDefaults -> f FeatureSetDefaults # | |
HasField FeatureSetDefaults "vec'defaults" (Vector FeatureSetDefaults'FeatureSetEditionDefault) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'defaults" -> (Vector FeatureSetDefaults'FeatureSetEditionDefault -> f (Vector FeatureSetDefaults'FeatureSetEditionDefault)) -> FeatureSetDefaults -> f FeatureSetDefaults # | |
HasField FeatureSetDefaults'FeatureSetEditionDefault "maybe'edition" (Maybe Edition) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'edition" -> (Maybe Edition -> f (Maybe Edition)) -> FeatureSetDefaults'FeatureSetEditionDefault -> f FeatureSetDefaults'FeatureSetEditionDefault # | |
HasField FeatureSetDefaults'FeatureSetEditionDefault "maybe'fixedFeatures" (Maybe FeatureSet) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'fixedFeatures" -> (Maybe FeatureSet -> f (Maybe FeatureSet)) -> FeatureSetDefaults'FeatureSetEditionDefault -> f FeatureSetDefaults'FeatureSetEditionDefault # | |
HasField FeatureSetDefaults'FeatureSetEditionDefault "maybe'overridableFeatures" (Maybe FeatureSet) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'overridableFeatures" -> (Maybe FeatureSet -> f (Maybe FeatureSet)) -> FeatureSetDefaults'FeatureSetEditionDefault -> f FeatureSetDefaults'FeatureSetEditionDefault # | |
HasField FieldDescriptorProto "maybe'defaultValue" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'defaultValue" -> (Maybe Text -> f (Maybe Text)) -> FieldDescriptorProto -> f FieldDescriptorProto # | |
HasField FieldDescriptorProto "maybe'extendee" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'extendee" -> (Maybe Text -> f (Maybe Text)) -> FieldDescriptorProto -> f FieldDescriptorProto # | |
HasField FieldDescriptorProto "maybe'jsonName" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'jsonName" -> (Maybe Text -> f (Maybe Text)) -> FieldDescriptorProto -> f FieldDescriptorProto # | |
HasField FieldDescriptorProto "maybe'label" (Maybe FieldDescriptorProto'Label) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'label" -> (Maybe FieldDescriptorProto'Label -> f (Maybe FieldDescriptorProto'Label)) -> FieldDescriptorProto -> f FieldDescriptorProto # | |
HasField FieldDescriptorProto "maybe'name" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'name" -> (Maybe Text -> f (Maybe Text)) -> FieldDescriptorProto -> f FieldDescriptorProto # | |
HasField FieldDescriptorProto "maybe'number" (Maybe Int32) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'number" -> (Maybe Int32 -> f (Maybe Int32)) -> FieldDescriptorProto -> f FieldDescriptorProto # | |
HasField FieldDescriptorProto "maybe'oneofIndex" (Maybe Int32) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'oneofIndex" -> (Maybe Int32 -> f (Maybe Int32)) -> FieldDescriptorProto -> f FieldDescriptorProto # | |
HasField FieldDescriptorProto "maybe'options" (Maybe FieldOptions) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'options" -> (Maybe FieldOptions -> f (Maybe FieldOptions)) -> FieldDescriptorProto -> f FieldDescriptorProto # | |
HasField FieldDescriptorProto "maybe'proto3Optional" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'proto3Optional" -> (Maybe Bool -> f (Maybe Bool)) -> FieldDescriptorProto -> f FieldDescriptorProto # | |
HasField FieldDescriptorProto "maybe'type'" (Maybe FieldDescriptorProto'Type) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'type'" -> (Maybe FieldDescriptorProto'Type -> f (Maybe FieldDescriptorProto'Type)) -> FieldDescriptorProto -> f FieldDescriptorProto # | |
HasField FieldDescriptorProto "maybe'typeName" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'typeName" -> (Maybe Text -> f (Maybe Text)) -> FieldDescriptorProto -> f FieldDescriptorProto # | |
HasField FieldOptions "editionDefaults" [FieldOptions'EditionDefault] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "editionDefaults" -> ([FieldOptions'EditionDefault] -> f [FieldOptions'EditionDefault]) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "maybe'ctype" (Maybe FieldOptions'CType) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'ctype" -> (Maybe FieldOptions'CType -> f (Maybe FieldOptions'CType)) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "maybe'debugRedact" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'debugRedact" -> (Maybe Bool -> f (Maybe Bool)) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "maybe'deprecated" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'deprecated" -> (Maybe Bool -> f (Maybe Bool)) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "maybe'featureSupport" (Maybe FieldOptions'FeatureSupport) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'featureSupport" -> (Maybe FieldOptions'FeatureSupport -> f (Maybe FieldOptions'FeatureSupport)) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "maybe'features" (Maybe FeatureSet) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'features" -> (Maybe FeatureSet -> f (Maybe FeatureSet)) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "maybe'jstype" (Maybe FieldOptions'JSType) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'jstype" -> (Maybe FieldOptions'JSType -> f (Maybe FieldOptions'JSType)) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "maybe'lazy" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'lazy" -> (Maybe Bool -> f (Maybe Bool)) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "maybe'packed" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'packed" -> (Maybe Bool -> f (Maybe Bool)) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "maybe'retention" (Maybe FieldOptions'OptionRetention) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'retention" -> (Maybe FieldOptions'OptionRetention -> f (Maybe FieldOptions'OptionRetention)) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "maybe'unverifiedLazy" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'unverifiedLazy" -> (Maybe Bool -> f (Maybe Bool)) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "maybe'weak" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'weak" -> (Maybe Bool -> f (Maybe Bool)) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "targets" [FieldOptions'OptionTargetType] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "targets" -> ([FieldOptions'OptionTargetType] -> f [FieldOptions'OptionTargetType]) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "uninterpretedOption" [UninterpretedOption] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "uninterpretedOption" -> ([UninterpretedOption] -> f [UninterpretedOption]) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "vec'editionDefaults" (Vector FieldOptions'EditionDefault) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'editionDefaults" -> (Vector FieldOptions'EditionDefault -> f (Vector FieldOptions'EditionDefault)) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "vec'targets" (Vector FieldOptions'OptionTargetType) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'targets" -> (Vector FieldOptions'OptionTargetType -> f (Vector FieldOptions'OptionTargetType)) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions "vec'uninterpretedOption" (Vector UninterpretedOption) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'uninterpretedOption" -> (Vector UninterpretedOption -> f (Vector UninterpretedOption)) -> FieldOptions -> f FieldOptions # | |
HasField FieldOptions'EditionDefault "maybe'edition" (Maybe Edition) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'edition" -> (Maybe Edition -> f (Maybe Edition)) -> FieldOptions'EditionDefault -> f FieldOptions'EditionDefault # | |
HasField FieldOptions'EditionDefault "maybe'value" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'value" -> (Maybe Text -> f (Maybe Text)) -> FieldOptions'EditionDefault -> f FieldOptions'EditionDefault # | |
HasField FieldOptions'FeatureSupport "maybe'deprecationWarning" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'deprecationWarning" -> (Maybe Text -> f (Maybe Text)) -> FieldOptions'FeatureSupport -> f FieldOptions'FeatureSupport # | |
HasField FieldOptions'FeatureSupport "maybe'editionDeprecated" (Maybe Edition) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'editionDeprecated" -> (Maybe Edition -> f (Maybe Edition)) -> FieldOptions'FeatureSupport -> f FieldOptions'FeatureSupport # | |
HasField FieldOptions'FeatureSupport "maybe'editionIntroduced" (Maybe Edition) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'editionIntroduced" -> (Maybe Edition -> f (Maybe Edition)) -> FieldOptions'FeatureSupport -> f FieldOptions'FeatureSupport # | |
HasField FieldOptions'FeatureSupport "maybe'editionRemoved" (Maybe Edition) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'editionRemoved" -> (Maybe Edition -> f (Maybe Edition)) -> FieldOptions'FeatureSupport -> f FieldOptions'FeatureSupport # | |
HasField FileDescriptorProto "dependency" [Text] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "dependency" -> ([Text] -> f [Text]) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "enumType" [EnumDescriptorProto] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "enumType" -> ([EnumDescriptorProto] -> f [EnumDescriptorProto]) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "extension" [FieldDescriptorProto] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "extension" -> ([FieldDescriptorProto] -> f [FieldDescriptorProto]) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "maybe'edition" (Maybe Edition) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'edition" -> (Maybe Edition -> f (Maybe Edition)) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "maybe'name" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'name" -> (Maybe Text -> f (Maybe Text)) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "maybe'options" (Maybe FileOptions) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'options" -> (Maybe FileOptions -> f (Maybe FileOptions)) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "maybe'package" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'package" -> (Maybe Text -> f (Maybe Text)) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "maybe'sourceCodeInfo" (Maybe SourceCodeInfo) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'sourceCodeInfo" -> (Maybe SourceCodeInfo -> f (Maybe SourceCodeInfo)) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "maybe'syntax" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'syntax" -> (Maybe Text -> f (Maybe Text)) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "messageType" [DescriptorProto] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "messageType" -> ([DescriptorProto] -> f [DescriptorProto]) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "publicDependency" [Int32] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "publicDependency" -> ([Int32] -> f [Int32]) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "service" [ServiceDescriptorProto] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "service" -> ([ServiceDescriptorProto] -> f [ServiceDescriptorProto]) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "vec'dependency" (Vector Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'dependency" -> (Vector Text -> f (Vector Text)) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "vec'enumType" (Vector EnumDescriptorProto) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'enumType" -> (Vector EnumDescriptorProto -> f (Vector EnumDescriptorProto)) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "vec'extension" (Vector FieldDescriptorProto) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'extension" -> (Vector FieldDescriptorProto -> f (Vector FieldDescriptorProto)) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "vec'messageType" (Vector DescriptorProto) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'messageType" -> (Vector DescriptorProto -> f (Vector DescriptorProto)) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "vec'publicDependency" (Vector Int32) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'publicDependency" -> (Vector Int32 -> f (Vector Int32)) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "vec'service" (Vector ServiceDescriptorProto) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'service" -> (Vector ServiceDescriptorProto -> f (Vector ServiceDescriptorProto)) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "vec'weakDependency" (Vector Int32) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'weakDependency" -> (Vector Int32 -> f (Vector Int32)) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorProto "weakDependency" [Int32] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "weakDependency" -> ([Int32] -> f [Int32]) -> FileDescriptorProto -> f FileDescriptorProto # | |
HasField FileDescriptorSet "file" [FileDescriptorProto] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "file" -> ([FileDescriptorProto] -> f [FileDescriptorProto]) -> FileDescriptorSet -> f FileDescriptorSet # | |
HasField FileDescriptorSet "vec'file" (Vector FileDescriptorProto) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'file" -> (Vector FileDescriptorProto -> f (Vector FileDescriptorProto)) -> FileDescriptorSet -> f FileDescriptorSet # | |
HasField FileOptions "maybe'ccEnableArenas" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'ccEnableArenas" -> (Maybe Bool -> f (Maybe Bool)) -> FileOptions -> f FileOptions # | |
HasField FileOptions "maybe'ccGenericServices" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'ccGenericServices" -> (Maybe Bool -> f (Maybe Bool)) -> FileOptions -> f FileOptions # | |
HasField FileOptions "maybe'csharpNamespace" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'csharpNamespace" -> (Maybe Text -> f (Maybe Text)) -> FileOptions -> f FileOptions # | |
HasField FileOptions "maybe'deprecated" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'deprecated" -> (Maybe Bool -> f (Maybe Bool)) -> FileOptions -> f FileOptions # | |
HasField FileOptions "maybe'features" (Maybe FeatureSet) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'features" -> (Maybe FeatureSet -> f (Maybe FeatureSet)) -> FileOptions -> f FileOptions # | |
HasField FileOptions "maybe'goPackage" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'goPackage" -> (Maybe Text -> f (Maybe Text)) -> FileOptions -> f FileOptions # | |
HasField FileOptions "maybe'javaGenerateEqualsAndHash" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'javaGenerateEqualsAndHash" -> (Maybe Bool -> f (Maybe Bool)) -> FileOptions -> f FileOptions # | |
HasField FileOptions "maybe'javaGenericServices" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'javaGenericServices" -> (Maybe Bool -> f (Maybe Bool)) -> FileOptions -> f FileOptions # | |
HasField FileOptions "maybe'javaMultipleFiles" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'javaMultipleFiles" -> (Maybe Bool -> f (Maybe Bool)) -> FileOptions -> f FileOptions # | |
HasField FileOptions "maybe'javaOuterClassname" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'javaOuterClassname" -> (Maybe Text -> f (Maybe Text)) -> FileOptions -> f FileOptions # | |
HasField FileOptions "maybe'javaPackage" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'javaPackage" -> (Maybe Text -> f (Maybe Text)) -> FileOptions -> f FileOptions # | |
HasField FileOptions "maybe'javaStringCheckUtf8" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'javaStringCheckUtf8" -> (Maybe Bool -> f (Maybe Bool)) -> FileOptions -> f FileOptions # | |
HasField FileOptions "maybe'objcClassPrefix" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'objcClassPrefix" -> (Maybe Text -> f (Maybe Text)) -> FileOptions -> f FileOptions # | |
HasField FileOptions "maybe'optimizeFor" (Maybe FileOptions'OptimizeMode) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'optimizeFor" -> (Maybe FileOptions'OptimizeMode -> f (Maybe FileOptions'OptimizeMode)) -> FileOptions -> f FileOptions # | |
HasField FileOptions "maybe'phpClassPrefix" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'phpClassPrefix" -> (Maybe Text -> f (Maybe Text)) -> FileOptions -> f FileOptions # | |
HasField FileOptions "maybe'phpMetadataNamespace" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'phpMetadataNamespace" -> (Maybe Text -> f (Maybe Text)) -> FileOptions -> f FileOptions # | |
HasField FileOptions "maybe'phpNamespace" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'phpNamespace" -> (Maybe Text -> f (Maybe Text)) -> FileOptions -> f FileOptions # | |
HasField FileOptions "maybe'pyGenericServices" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'pyGenericServices" -> (Maybe Bool -> f (Maybe Bool)) -> FileOptions -> f FileOptions # | |
HasField FileOptions "maybe'rubyPackage" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'rubyPackage" -> (Maybe Text -> f (Maybe Text)) -> FileOptions -> f FileOptions # | |
HasField FileOptions "maybe'swiftPrefix" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'swiftPrefix" -> (Maybe Text -> f (Maybe Text)) -> FileOptions -> f FileOptions # | |
HasField FileOptions "uninterpretedOption" [UninterpretedOption] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "uninterpretedOption" -> ([UninterpretedOption] -> f [UninterpretedOption]) -> FileOptions -> f FileOptions # | |
HasField FileOptions "vec'uninterpretedOption" (Vector UninterpretedOption) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'uninterpretedOption" -> (Vector UninterpretedOption -> f (Vector UninterpretedOption)) -> FileOptions -> f FileOptions # | |
HasField GeneratedCodeInfo "annotation" [GeneratedCodeInfo'Annotation] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "annotation" -> ([GeneratedCodeInfo'Annotation] -> f [GeneratedCodeInfo'Annotation]) -> GeneratedCodeInfo -> f GeneratedCodeInfo # | |
HasField GeneratedCodeInfo "vec'annotation" (Vector GeneratedCodeInfo'Annotation) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'annotation" -> (Vector GeneratedCodeInfo'Annotation -> f (Vector GeneratedCodeInfo'Annotation)) -> GeneratedCodeInfo -> f GeneratedCodeInfo # | |
HasField GeneratedCodeInfo'Annotation "maybe'begin" (Maybe Int32) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'begin" -> (Maybe Int32 -> f (Maybe Int32)) -> GeneratedCodeInfo'Annotation -> f GeneratedCodeInfo'Annotation # | |
HasField GeneratedCodeInfo'Annotation "maybe'end" (Maybe Int32) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'end" -> (Maybe Int32 -> f (Maybe Int32)) -> GeneratedCodeInfo'Annotation -> f GeneratedCodeInfo'Annotation # | |
HasField GeneratedCodeInfo'Annotation "maybe'semantic" (Maybe GeneratedCodeInfo'Annotation'Semantic) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'semantic" -> (Maybe GeneratedCodeInfo'Annotation'Semantic -> f (Maybe GeneratedCodeInfo'Annotation'Semantic)) -> GeneratedCodeInfo'Annotation -> f GeneratedCodeInfo'Annotation # | |
HasField GeneratedCodeInfo'Annotation "maybe'sourceFile" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'sourceFile" -> (Maybe Text -> f (Maybe Text)) -> GeneratedCodeInfo'Annotation -> f GeneratedCodeInfo'Annotation # | |
HasField GeneratedCodeInfo'Annotation "path" [Int32] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "path" -> ([Int32] -> f [Int32]) -> GeneratedCodeInfo'Annotation -> f GeneratedCodeInfo'Annotation # | |
HasField GeneratedCodeInfo'Annotation "vec'path" (Vector Int32) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'path" -> (Vector Int32 -> f (Vector Int32)) -> GeneratedCodeInfo'Annotation -> f GeneratedCodeInfo'Annotation # | |
HasField MessageOptions "maybe'deprecated" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'deprecated" -> (Maybe Bool -> f (Maybe Bool)) -> MessageOptions -> f MessageOptions # | |
HasField MessageOptions "maybe'deprecatedLegacyJsonFieldConflicts" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'deprecatedLegacyJsonFieldConflicts" -> (Maybe Bool -> f (Maybe Bool)) -> MessageOptions -> f MessageOptions # | |
HasField MessageOptions "maybe'features" (Maybe FeatureSet) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'features" -> (Maybe FeatureSet -> f (Maybe FeatureSet)) -> MessageOptions -> f MessageOptions # | |
HasField MessageOptions "maybe'mapEntry" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'mapEntry" -> (Maybe Bool -> f (Maybe Bool)) -> MessageOptions -> f MessageOptions # | |
HasField MessageOptions "maybe'messageSetWireFormat" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'messageSetWireFormat" -> (Maybe Bool -> f (Maybe Bool)) -> MessageOptions -> f MessageOptions # | |
HasField MessageOptions "maybe'noStandardDescriptorAccessor" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'noStandardDescriptorAccessor" -> (Maybe Bool -> f (Maybe Bool)) -> MessageOptions -> f MessageOptions # | |
HasField MessageOptions "uninterpretedOption" [UninterpretedOption] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "uninterpretedOption" -> ([UninterpretedOption] -> f [UninterpretedOption]) -> MessageOptions -> f MessageOptions # | |
HasField MessageOptions "vec'uninterpretedOption" (Vector UninterpretedOption) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'uninterpretedOption" -> (Vector UninterpretedOption -> f (Vector UninterpretedOption)) -> MessageOptions -> f MessageOptions # | |
HasField MethodDescriptorProto "maybe'clientStreaming" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'clientStreaming" -> (Maybe Bool -> f (Maybe Bool)) -> MethodDescriptorProto -> f MethodDescriptorProto # | |
HasField MethodDescriptorProto "maybe'inputType" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'inputType" -> (Maybe Text -> f (Maybe Text)) -> MethodDescriptorProto -> f MethodDescriptorProto # | |
HasField MethodDescriptorProto "maybe'name" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'name" -> (Maybe Text -> f (Maybe Text)) -> MethodDescriptorProto -> f MethodDescriptorProto # | |
HasField MethodDescriptorProto "maybe'options" (Maybe MethodOptions) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'options" -> (Maybe MethodOptions -> f (Maybe MethodOptions)) -> MethodDescriptorProto -> f MethodDescriptorProto # | |
HasField MethodDescriptorProto "maybe'outputType" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'outputType" -> (Maybe Text -> f (Maybe Text)) -> MethodDescriptorProto -> f MethodDescriptorProto # | |
HasField MethodDescriptorProto "maybe'serverStreaming" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'serverStreaming" -> (Maybe Bool -> f (Maybe Bool)) -> MethodDescriptorProto -> f MethodDescriptorProto # | |
HasField MethodOptions "maybe'deprecated" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'deprecated" -> (Maybe Bool -> f (Maybe Bool)) -> MethodOptions -> f MethodOptions # | |
HasField MethodOptions "maybe'features" (Maybe FeatureSet) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'features" -> (Maybe FeatureSet -> f (Maybe FeatureSet)) -> MethodOptions -> f MethodOptions # | |
HasField MethodOptions "maybe'idempotencyLevel" (Maybe MethodOptions'IdempotencyLevel) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'idempotencyLevel" -> (Maybe MethodOptions'IdempotencyLevel -> f (Maybe MethodOptions'IdempotencyLevel)) -> MethodOptions -> f MethodOptions # | |
HasField MethodOptions "uninterpretedOption" [UninterpretedOption] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "uninterpretedOption" -> ([UninterpretedOption] -> f [UninterpretedOption]) -> MethodOptions -> f MethodOptions # | |
HasField MethodOptions "vec'uninterpretedOption" (Vector UninterpretedOption) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'uninterpretedOption" -> (Vector UninterpretedOption -> f (Vector UninterpretedOption)) -> MethodOptions -> f MethodOptions # | |
HasField OneofDescriptorProto "maybe'name" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'name" -> (Maybe Text -> f (Maybe Text)) -> OneofDescriptorProto -> f OneofDescriptorProto # | |
HasField OneofDescriptorProto "maybe'options" (Maybe OneofOptions) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'options" -> (Maybe OneofOptions -> f (Maybe OneofOptions)) -> OneofDescriptorProto -> f OneofDescriptorProto # | |
HasField OneofOptions "maybe'features" (Maybe FeatureSet) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'features" -> (Maybe FeatureSet -> f (Maybe FeatureSet)) -> OneofOptions -> f OneofOptions # | |
HasField OneofOptions "uninterpretedOption" [UninterpretedOption] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "uninterpretedOption" -> ([UninterpretedOption] -> f [UninterpretedOption]) -> OneofOptions -> f OneofOptions # | |
HasField OneofOptions "vec'uninterpretedOption" (Vector UninterpretedOption) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'uninterpretedOption" -> (Vector UninterpretedOption -> f (Vector UninterpretedOption)) -> OneofOptions -> f OneofOptions # | |
HasField ServiceDescriptorProto "maybe'name" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'name" -> (Maybe Text -> f (Maybe Text)) -> ServiceDescriptorProto -> f ServiceDescriptorProto # | |
HasField ServiceDescriptorProto "maybe'options" (Maybe ServiceOptions) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'options" -> (Maybe ServiceOptions -> f (Maybe ServiceOptions)) -> ServiceDescriptorProto -> f ServiceDescriptorProto # | |
HasField ServiceDescriptorProto "method" [MethodDescriptorProto] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "method" -> ([MethodDescriptorProto] -> f [MethodDescriptorProto]) -> ServiceDescriptorProto -> f ServiceDescriptorProto # | |
HasField ServiceDescriptorProto "vec'method" (Vector MethodDescriptorProto) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'method" -> (Vector MethodDescriptorProto -> f (Vector MethodDescriptorProto)) -> ServiceDescriptorProto -> f ServiceDescriptorProto # | |
HasField ServiceOptions "maybe'deprecated" (Maybe Bool) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'deprecated" -> (Maybe Bool -> f (Maybe Bool)) -> ServiceOptions -> f ServiceOptions # | |
HasField ServiceOptions "maybe'features" (Maybe FeatureSet) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'features" -> (Maybe FeatureSet -> f (Maybe FeatureSet)) -> ServiceOptions -> f ServiceOptions # | |
HasField ServiceOptions "uninterpretedOption" [UninterpretedOption] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "uninterpretedOption" -> ([UninterpretedOption] -> f [UninterpretedOption]) -> ServiceOptions -> f ServiceOptions # | |
HasField ServiceOptions "vec'uninterpretedOption" (Vector UninterpretedOption) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'uninterpretedOption" -> (Vector UninterpretedOption -> f (Vector UninterpretedOption)) -> ServiceOptions -> f ServiceOptions # | |
HasField SourceCodeInfo "location" [SourceCodeInfo'Location] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "location" -> ([SourceCodeInfo'Location] -> f [SourceCodeInfo'Location]) -> SourceCodeInfo -> f SourceCodeInfo # | |
HasField SourceCodeInfo "vec'location" (Vector SourceCodeInfo'Location) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'location" -> (Vector SourceCodeInfo'Location -> f (Vector SourceCodeInfo'Location)) -> SourceCodeInfo -> f SourceCodeInfo # | |
HasField SourceCodeInfo'Location "leadingDetachedComments" [Text] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "leadingDetachedComments" -> ([Text] -> f [Text]) -> SourceCodeInfo'Location -> f SourceCodeInfo'Location # | |
HasField SourceCodeInfo'Location "maybe'leadingComments" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'leadingComments" -> (Maybe Text -> f (Maybe Text)) -> SourceCodeInfo'Location -> f SourceCodeInfo'Location # | |
HasField SourceCodeInfo'Location "maybe'trailingComments" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'trailingComments" -> (Maybe Text -> f (Maybe Text)) -> SourceCodeInfo'Location -> f SourceCodeInfo'Location # | |
HasField SourceCodeInfo'Location "path" [Int32] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "path" -> ([Int32] -> f [Int32]) -> SourceCodeInfo'Location -> f SourceCodeInfo'Location # | |
HasField SourceCodeInfo'Location "span" [Int32] | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "span" -> ([Int32] -> f [Int32]) -> SourceCodeInfo'Location -> f SourceCodeInfo'Location # | |
HasField SourceCodeInfo'Location "vec'leadingDetachedComments" (Vector Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'leadingDetachedComments" -> (Vector Text -> f (Vector Text)) -> SourceCodeInfo'Location -> f SourceCodeInfo'Location # | |
HasField SourceCodeInfo'Location "vec'path" (Vector Int32) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'path" -> (Vector Int32 -> f (Vector Int32)) -> SourceCodeInfo'Location -> f SourceCodeInfo'Location # | |
HasField SourceCodeInfo'Location "vec'span" (Vector Int32) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "vec'span" -> (Vector Int32 -> f (Vector Int32)) -> SourceCodeInfo'Location -> f SourceCodeInfo'Location # | |
HasField UninterpretedOption "maybe'aggregateValue" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'aggregateValue" -> (Maybe Text -> f (Maybe Text)) -> UninterpretedOption -> f UninterpretedOption # | |
HasField UninterpretedOption "maybe'doubleValue" (Maybe Double) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'doubleValue" -> (Maybe Double -> f (Maybe Double)) -> UninterpretedOption -> f UninterpretedOption # | |
HasField UninterpretedOption "maybe'identifierValue" (Maybe Text) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'identifierValue" -> (Maybe Text -> f (Maybe Text)) -> UninterpretedOption -> f UninterpretedOption # | |
HasField UninterpretedOption "maybe'negativeIntValue" (Maybe Int64) | |
Defined in Proto.Google.Protobuf.Descriptor Methods fieldOf :: Functor f => Proxy# "maybe'negativeIntValue" -> (Maybe Int64 -> f (Maybe Int64)) -> UninterpretedOption -> f UninterpretedOption # | |
HasField UninterpretedOption "maybe'positiveIntValue" (Maybe Word64) | |