| 339 | : type_(*type), length_(length), buffer_length_(bit_util::BytesForBits(length)) {} |
| 340 | |
| 341 | Result<int64_t> Finish() && { |
| 342 | RETURN_NOT_OK(VisitTypeInline(type_, this)); |
| 343 | return buffer_length_; |
| 344 | } |
| 345 | |
| 346 | template <typename T, typename = decltype(TypeTraits<T>::bytes_required(0))> |
| 347 | Status Visit(const T&) { |
no test coverage detected