| 75 | struct FromStringImpl { |
| 76 | template <typename Properties> |
| 77 | FromStringImpl(std::string_view class_name, std::string_view repr, |
| 78 | const Properties& props) { |
| 79 | Init(class_name, repr, props.size()); |
| 80 | props.ForEach(*this); |
| 81 | } |
| 82 | |
| 83 | void Fail() { obj_ = std::nullopt; } |
| 84 |