| 46 | } // namespace |
| 47 | |
| 48 | absl::Status CustomStructValueInterface::Equal( |
| 49 | const StructValue& other, |
| 50 | const google::protobuf::DescriptorPool* absl_nonnull descriptor_pool, |
| 51 | google::protobuf::MessageFactory* absl_nonnull message_factory, |
| 52 | google::protobuf::Arena* absl_nonnull arena, Value* absl_nonnull result) const { |
| 53 | return common_internal::StructValueEqual(*this, other, descriptor_pool, |
| 54 | message_factory, arena, result); |
| 55 | } |
| 56 | |
| 57 | absl::Status CustomStructValueInterface::Qualify( |
| 58 | absl::Span<const SelectQualifier> qualifiers, bool presence_test, |
nothing calls this directly
no test coverage detected