| 208 | } |
| 209 | |
| 210 | inline static arrow::Result<T> Deserialize(std::string_view serialized) { |
| 211 | T out; |
| 212 | ARROW_RETURN_NOT_OK(SelfT::Deserialize(serialized, &out)); |
| 213 | return out; |
| 214 | } |
| 215 | |
| 216 | inline arrow::Result<std::shared_ptr<Buffer>> SerializeToBuffer() const { |
| 217 | std::string out; |
nothing calls this directly
no test coverage detected