| 214 | } |
| 215 | |
| 216 | inline arrow::Result<std::shared_ptr<Buffer>> SerializeToBuffer() const { |
| 217 | std::string out; |
| 218 | ARROW_RETURN_NOT_OK(self().SelfT::SerializeToString(&out)); |
| 219 | return Buffer::FromString(std::move(out)); |
| 220 | } |
| 221 | }; |
| 222 | |
| 223 | } // namespace internal |
no test coverage detected