Variant
request-options-error
This type enumerates the different kinds of errors that may occur when
setting fields of a request-options resource.
variant request-options-error {
not-supported,
immutable,
other(option<string>),
}Cases
| Case | Payload | Description |
|---|---|---|
| not-supported | — | Indicates the specified field is not supported by this implementation. |
| immutable | — | Indicates that the operation on the request-options was not permitted
because it is immutable. |
| other | option<string> | This is a catch-all error for anything that doesn't fit cleanly into a more specific case. Implementations can use this to extend the error type without breaking existing code. It also includes an optional string for an unstructured description of the error. Users should not depend on the string for diagnosing errors, as it's not required to be consistent between implementations. |