Sha256: 20b2ee350c28de0e52915b54f94b0693a3855d3f722b3f67c685dc33e04058b2
Contents?: true
Size: 631 Bytes
Versions: 1
Compression:
Stored size: 631 Bytes
Contents
// Protocol Buffers - Google's data interchange format // Copyright 2024 Google LLC. All rights reserved. // // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file or at // https://developers.google.com/open-source/licenses/bsd #ifndef UPB_TEXT_OPTIONS_H_ #define UPB_TEXT_OPTIONS_H_ enum { // When set, prints everything on a single line. UPB_TXTENC_SINGLELINE = 1, // When set, unknown fields are not printed. UPB_TXTENC_SKIPUNKNOWN = 2, // When set, maps are *not* sorted (this avoids allocating tmp mem). UPB_TXTENC_NOSORT = 4 }; #endif // UPB_TEXT_OPTIONS_H_
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
grpc-1.68.1 | third_party/upb/upb/text/options.h |