Enum k8s_openapi::ResponseError
source · Expand description
The type of errors from parsing an HTTP response as one of the Kubernetes API functions’ response types.
Variants§
NeedMoreData
An error from deserializing the HTTP response, indicating more data is needed to complete deserialization.
Json(Error)
An error while deserializing the HTTP response as a JSON value, indicating the response is malformed.
Utf8(Utf8Error)
An error while deserializing the HTTP response as a string, indicating that the response data is not UTF-8.
Trait Implementations§
source§impl Debug for ResponseError
impl Debug for ResponseError
source§impl Display for ResponseError
impl Display for ResponseError
source§impl Error for ResponseError
impl Error for ResponseError
source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§fn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting