Return true iff the status indicates an unknown error.
| 305 | constexpr bool IsTypeError() const { return code() == StatusCode::TypeError; } |
| 306 | /// Return true iff the status indicates an unknown error. |
| 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 |