| 71 | inline Status OkStatus() { return Status(); } |
| 72 | |
| 73 | inline Status AlreadyExistsError(const std::string& message) { |
| 74 | return Status(StatusCode::kAlreadyExists, message); |
| 75 | } |
| 76 | |
| 77 | inline Status DeadlineExceededError(const std::string& message) { |
| 78 | return Status(StatusCode::kDeadlineExceeded, message); |