| 146 | } |
| 147 | |
| 148 | void PrintTo(const Person& obj, std::ostream* os) { *os << ToString(obj); } |
| 149 | |
| 150 | std::optional<Person> PersonFromString(std::string_view repr) { |
| 151 | return FromStringImpl<Person>("Person", repr, kPersonProperties).obj_; |
nothing calls this directly
no test coverage detected