Enum k8s_openapi::RequestError[][src]

pub enum RequestError {
    Http(Error),
    Json(Error),
}

The type of errors returned by the Kubernetes API functions that prepare the HTTP request.

Variants

An error from preparing the HTTP request.

An error while serializing a value into the JSON body of the HTTP request.

Trait Implementations

impl Debug for RequestError
[src]

Formats the value using the given formatter. Read more

impl Display for RequestError
[src]

Formats the value using the given formatter. Read more

impl Error for RequestError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations