Enum k8s_openapi::RequestError
source · pub enum RequestError {
Http(Error),
Json(Error),
}
Expand description
The type of errors returned by the Kubernetes API functions that prepare the HTTP request.
Variants§
Http(Error)
An error from preparing the HTTP request.
Json(Error)
An error while serializing a value into the JSON body of the HTTP request.
Trait Implementations§
source§impl Debug for RequestError
impl Debug for RequestError
source§impl Display for RequestError
impl Display for RequestError
source§impl Error for RequestError
impl Error for RequestError
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()