Return true iff the status indicates an unimplemented operation.
| 307 | constexpr bool IsUnknownError() const { return code() == StatusCode::UnknownError; } |
| 308 | /// Return true iff the status indicates an unimplemented operation. |
| 309 | constexpr bool IsNotImplemented() const { return code() == StatusCode::NotImplemented; } |
| 310 | /// Return true iff the status indicates a (de)serialization failure |
| 311 | constexpr bool IsSerializationError() const { |
| 312 | return code() == StatusCode::SerializationError; |