[][src]Enum fluvio_cluster::ClusterError

pub enum ClusterError {
    InstallK8(K8InstallError),
    InstallLocal(LocalInstallError),
    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

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<UninstallError> for ClusterError[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<T> Erased for T

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]