Enum kubewatch::Error [] [src]

pub enum Error {
    InvalidUrl(ParseError),
    HttpRequestFailed(Error),
    DeserializationFailed(Error),
}

Covers all errors returned by kubewatch.

Variants

Failed to parse given URL, check inner ParseError for more info.

HTTP request failed (does not apply to non-2xx status), check inner Error for more info.

Failed while deserializating an event from JSON to Rust.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.