struct Protobuf::CodeGeneratorRequest::ServiceDescriptorProto
- Protobuf::CodeGeneratorRequest::ServiceDescriptorProto
- Struct
- Value
- Object
Included Modules
Defined in:
protobuf/generator.crConstant Summary
-
FIELDS =
{1 => {name: :name, pb_type: :string, crystal_type: String, cast_type: String?, native: true, optional: true, repeated: false, default: nil, packed: false}, 2 => {name: :method, pb_type: MethodDescriptorProto, crystal_type: MethodDescriptorProto, cast_type: Array(MethodDescriptorProto)?, native: false, optional: true, repeated: true, default: nil, packed: false}, 3 => {name: :options, pb_type: ServiceOptions, crystal_type: ServiceOptions, cast_type: ServiceOptions?, native: false, optional: true, repeated: false, default: nil, packed: false}} of Int32 => HashLiteral(Symbol, ASTNode)
Constructors
- .new(buf : Protobuf::Buffer)
- .new(name : String | Nil = nil, method : Array(MethodDescriptorProto) | Nil = nil, options : ServiceOptions | Nil = nil)
Class Method Summary
Instance Method Summary
- #[](key : String)
- #method : Array(MethodDescriptorProto) | Nil
- #method=(method : Array(MethodDescriptorProto) | Nil)
- #name : String | Nil
- #name=(name : String | Nil)
- #options : ServiceOptions | Nil
- #options=(options : ServiceOptions | Nil)
- #to_protobuf(io : IO, embedded = false)
- #to_protobuf
Instance methods inherited from module Protobuf::Message
==(other : Protobuf::Message)
==
Macros inherited from module Protobuf::Message
_add_field(tag, name, pb_type, options = {} of Symbol => Bool)
_add_field,
_generate_decoder(pbVer)
_generate_decoder,
_generate_encoder(pbVer)
_generate_encoder,
_generate_getters_setters
_generate_getters_setters,
_generate_hash_getters
_generate_hash_getters,
contract(&blk)
contract,
contract_of(syntax, &blk)
contract_of,
extensions(range)
extensions,
optional(name, type, tag, default = nil, repeated = false, packed = false)
optional,
repeated(name, type, tag, packed = false)
repeated,
required(name, type, tag, default = nil)
required
Constructor Detail
def self.new(name : String | Nil = nil, method : Array(MethodDescriptorProto) | Nil = nil, options : ServiceOptions | Nil = nil)
#