Enum k8s_openapi::ResponseError
source · pub enum ResponseError {
NeedMoreData,
Json(Error),
Utf8(Utf8Error),
}
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 source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()