Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
14 lines
388 B
14 lines
388 B
#ifndef GOOGLE_PROTOBUF_RUST_CPP_KERNEL_DEBUG_H__ |
|
#define GOOGLE_PROTOBUF_RUST_CPP_KERNEL_DEBUG_H__ |
|
|
|
#include "google/protobuf/message_lite.h" |
|
#include "rust/cpp_kernel/strings.h" |
|
|
|
extern "C" { |
|
|
|
google::protobuf::rust::RustStringRawParts proto2_rust_utf8_debug_string( |
|
const google::protobuf::MessageLite* msg); |
|
|
|
} // extern "C" |
|
|
|
#endif // GOOGLE_PROTOBUF_RUST_CPP_KERNEL_DEBUG_H__
|
|
|