1 /* This file was generated by upbc (the upb compiler) from the input
2 * file:
3 *
4 * envoy/type/v3/semantic_version.proto
5 *
6 * Do not edit -- your changes will be discarded when the file is
7 * regenerated. */
8
9 #ifndef ENVOY_TYPE_V3_SEMANTIC_VERSION_PROTO_UPB_H_
10 #define ENVOY_TYPE_V3_SEMANTIC_VERSION_PROTO_UPB_H_
11
12 #include "upb/msg.h"
13 #include "upb/decode.h"
14 #include "upb/decode_fast.h"
15 #include "upb/encode.h"
16
17 #include "upb/port_def.inc"
18
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22
23 struct envoy_type_v3_SemanticVersion;
24 typedef struct envoy_type_v3_SemanticVersion envoy_type_v3_SemanticVersion;
25 extern const upb_msglayout envoy_type_v3_SemanticVersion_msginit;
26
27
28 /* envoy.type.v3.SemanticVersion */
29
envoy_type_v3_SemanticVersion_new(upb_arena * arena)30 UPB_INLINE envoy_type_v3_SemanticVersion *envoy_type_v3_SemanticVersion_new(upb_arena *arena) {
31 return (envoy_type_v3_SemanticVersion *)_upb_msg_new(&envoy_type_v3_SemanticVersion_msginit, arena);
32 }
envoy_type_v3_SemanticVersion_parse(const char * buf,size_t size,upb_arena * arena)33 UPB_INLINE envoy_type_v3_SemanticVersion *envoy_type_v3_SemanticVersion_parse(const char *buf, size_t size,
34 upb_arena *arena) {
35 envoy_type_v3_SemanticVersion *ret = envoy_type_v3_SemanticVersion_new(arena);
36 return (ret && upb_decode(buf, size, ret, &envoy_type_v3_SemanticVersion_msginit, arena)) ? ret : NULL;
37 }
envoy_type_v3_SemanticVersion_parse_ex(const char * buf,size_t size,upb_arena * arena,int options)38 UPB_INLINE envoy_type_v3_SemanticVersion *envoy_type_v3_SemanticVersion_parse_ex(const char *buf, size_t size,
39 upb_arena *arena, int options) {
40 envoy_type_v3_SemanticVersion *ret = envoy_type_v3_SemanticVersion_new(arena);
41 return (ret && _upb_decode(buf, size, ret, &envoy_type_v3_SemanticVersion_msginit, arena, options))
42 ? ret : NULL;
43 }
envoy_type_v3_SemanticVersion_serialize(const envoy_type_v3_SemanticVersion * msg,upb_arena * arena,size_t * len)44 UPB_INLINE char *envoy_type_v3_SemanticVersion_serialize(const envoy_type_v3_SemanticVersion *msg, upb_arena *arena, size_t *len) {
45 return upb_encode(msg, &envoy_type_v3_SemanticVersion_msginit, arena, len);
46 }
47
envoy_type_v3_SemanticVersion_major_number(const envoy_type_v3_SemanticVersion * msg)48 UPB_INLINE uint32_t envoy_type_v3_SemanticVersion_major_number(const envoy_type_v3_SemanticVersion *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(0, 0), uint32_t); }
envoy_type_v3_SemanticVersion_minor_number(const envoy_type_v3_SemanticVersion * msg)49 UPB_INLINE uint32_t envoy_type_v3_SemanticVersion_minor_number(const envoy_type_v3_SemanticVersion *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), uint32_t); }
envoy_type_v3_SemanticVersion_patch(const envoy_type_v3_SemanticVersion * msg)50 UPB_INLINE uint32_t envoy_type_v3_SemanticVersion_patch(const envoy_type_v3_SemanticVersion *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), uint32_t); }
51
envoy_type_v3_SemanticVersion_set_major_number(envoy_type_v3_SemanticVersion * msg,uint32_t value)52 UPB_INLINE void envoy_type_v3_SemanticVersion_set_major_number(envoy_type_v3_SemanticVersion *msg, uint32_t value) {
53 *UPB_PTR_AT(msg, UPB_SIZE(0, 0), uint32_t) = value;
54 }
envoy_type_v3_SemanticVersion_set_minor_number(envoy_type_v3_SemanticVersion * msg,uint32_t value)55 UPB_INLINE void envoy_type_v3_SemanticVersion_set_minor_number(envoy_type_v3_SemanticVersion *msg, uint32_t value) {
56 *UPB_PTR_AT(msg, UPB_SIZE(4, 4), uint32_t) = value;
57 }
envoy_type_v3_SemanticVersion_set_patch(envoy_type_v3_SemanticVersion * msg,uint32_t value)58 UPB_INLINE void envoy_type_v3_SemanticVersion_set_patch(envoy_type_v3_SemanticVersion *msg, uint32_t value) {
59 *UPB_PTR_AT(msg, UPB_SIZE(8, 8), uint32_t) = value;
60 }
61
62 #ifdef __cplusplus
63 } /* extern "C" */
64 #endif
65
66 #include "upb/port_undef.inc"
67
68 #endif /* ENVOY_TYPE_V3_SEMANTIC_VERSION_PROTO_UPB_H_ */
69