| 122 | }; |
| 123 | |
| 124 | inline TimestampValue UnsafeTimestampValue(absl::Time value) { |
| 125 | return TimestampValue(absl::in_place, value); |
| 126 | } |
| 127 | |
| 128 | inline absl::StatusOr<TimestampValue> SafeTimestampValue(absl::Time value) { |
| 129 | absl::Status status = internal::ValidateTimestamp(value); |
no test coverage detected