Return true iff the status indicates invalid data.
| 293 | constexpr bool IsKeyError() const { return code() == StatusCode::KeyError; } |
| 294 | /// Return true iff the status indicates invalid data. |
| 295 | constexpr bool IsInvalid() const { return code() == StatusCode::Invalid; } |
| 296 | /// Return true iff the status indicates a cancelled operation. |
| 297 | constexpr bool IsCancelled() const { return code() == StatusCode::Cancelled; } |
| 298 | /// Return true iff the status indicates an IO-related failure. |