| 68 | T *GetMutableRoot() { return flatbuffers::GetMutableRoot<T>(mutable_data()); } |
| 69 | |
| 70 | const T *GetRoot() const { return flatbuffers::GetRoot<T>(data()); } |
| 71 | |
| 72 | // This is only intended for serializer use, or if you know what you're doing |
| 73 | const grpc_slice &BorrowSlice() const { return slice_; } |