MCPcopy Create free account
hub / github.com/apache/arrow / DeserializeProtoString

Function DeserializeProtoString

cpp/src/arrow/flight/types.cc:85–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83
84template <class PBType, class T>
85arrow::Status DeserializeProtoString(const char* name, std::string_view serialized,
86 T* out) {
87 PBType pb;
88 RETURN_NOT_OK(ParseFromString(name, serialized, &pb));
89 return internal::FromProto(pb, out);
90}
91
92template <class PBType, class T>
93Status SerializeToProtoString(const char* name, const T& in, std::string* out) {

Callers

nothing calls this directly

Calls 2

ParseFromStringFunction · 0.70
FromProtoFunction · 0.70

Tested by

no test coverage detected