| 416 | } |
| 417 | |
| 418 | bool AssignString(const CelValue& cel_value) const { |
| 419 | CelValue::StringHolder value; |
| 420 | if (!cel_value.GetValue(&value)) { |
| 421 | return false; |
| 422 | } |
| 423 | static_cast<const Derived*>(this)->SetString(value); |
| 424 | return true; |
| 425 | } |
| 426 | |
| 427 | bool AssignBytes(const CelValue& cel_value) const { |
| 428 | CelValue::BytesHolder value; |