| 147 | |
| 148 | template <class T, class VersionOptions> |
| 149 | static T fromStringRef(StringRef sr, VersionOptions vo) { |
| 150 | T t; |
| 151 | ObjectReader reader(sr.begin(), vo); |
| 152 | reader.deserialize(t); |
| 153 | return t; |
| 154 | } |
| 155 | |
| 156 | const uint8_t* data() { return _data; } |
| 157 |
nothing calls this directly
no test coverage detected