Enum fluvio_cluster::ClusterError[][src]

pub enum ClusterError {
    InstallK8(K8InstallError),
    InstallLocal(LocalInstallError),
    InstallSys(SysInstallError),
    Uninstall(UninstallError),
}

The types of errors that can occur during cluster management

Variants

InstallK8(K8InstallError)

An error occurred while trying to install Fluvio on Kubernetes

InstallLocal(LocalInstallError)

An error occurred while trying to install Fluvio locally

InstallSys(SysInstallError)

An error occurred while trying to install Fluvio system charts

Uninstall(UninstallError)

An error occurred while trying to uninstall Fluvio

Trait Implementations

impl Debug for ClusterError[src]

impl Display for ClusterError[src]

impl Error for ClusterError[src]

impl From<K8InstallError> for ClusterError[src]

impl From<LocalInstallError> for ClusterError[src]

impl From<SysInstallError> for ClusterError[src]

impl From<UninstallError> for ClusterError[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> AsFail for T where
    T: Fail, 

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

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

impl<T> Erased for T

impl<E> Fail for E where
    E: 'static + Error + Send + Sync

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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]