[][src]Enum fluvio_cli::profile::CloudError

pub enum CloudError {
    ProfileDownloadError,
    AuthenticationError(String),
    UnableToLoadCredentials {
        source: IoError,
    },
    UnableToParseCredentials {
        source: TomlError,
    },
    HttpError {
        source: HttpError,
    },
    IoError {
        source: IoError,
    },
    JsonError {
        source: JsonError,
    },
    UrlError {
        source: ParseError,
    },
}

Variants

ProfileDownloadError

Failed to download profile

AuthenticationError(String)

Failed to authenticate using the given username

UnableToLoadCredentials

Failed to open Fluvio Cloud login file

Fields of UnableToLoadCredentials

source: IoError
UnableToParseCredentials

Failed to parse Fluvio Cloud token

Fields of UnableToParseCredentials

source: TomlError
HttpError

Failed to make an http request

Fields of HttpError

source: HttpError
IoError

Failed to do some IO.

Fields of IoError

source: IoError
JsonError

Failed to deserialize JSON

Fields of JsonError

source: JsonError
UrlError

Failed to parse request URL

Fields of UrlError

source: ParseError

Trait Implementations

impl Debug for CloudError[src]

impl Display for CloudError[src]

impl Error for CloudError[src]

impl From<CloudError> for CliError[src]

impl From<Error> for CloudError[src]

impl From<Error> for CloudError[src]

impl From<Error> for CloudError[src]

impl From<ParseError> for CloudError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<'a, T> Captures<'a> for T where
    T: ?Sized

impl<T> Erased for T

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<E> InstrumentError for E where
    TracedError<E>: From<E>, 
[src]

type Instrumented = TracedError<E>

The type of the wrapped error after instrumentation

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<D> OwoColorize for D

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SectionExt for T where
    T: Display + Send + Sync + 'static, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]