Return true iff the status indicates an IO-related failure.
| 297 | constexpr bool IsCancelled() const { return code() == StatusCode::Cancelled; } |
| 298 | /// Return true iff the status indicates an IO-related failure. |
| 299 | constexpr bool IsIOError() const { return code() == StatusCode::IOError; } |
| 300 | /// Return true iff the status indicates a container reaching capacity limits. |
| 301 | constexpr bool IsCapacityError() const { return code() == StatusCode::CapacityError; } |
| 302 | /// Return true iff the status indicates an out of bounds index. |