Struct fluvio_cluster::LocalInstaller[][src]

pub struct LocalInstaller { /* fields omitted */ }

Install fluvio cluster locally

Implementations

impl LocalInstaller[src]

pub fn from_config(config: LocalConfig) -> Self[src]

Creates a LocalInstaller with the given configuration options

Example

let config = LocalConfig::builder("0.7.0-alpha.1").build()?;
let installer = LocalInstaller::from_config(config);

pub async fn setup(&self) -> CheckResults[src]

Checks if all of the prerequisites for installing Fluvio locally are met and tries to auto-fix the issues observed

pub async fn install(&self) -> Result<StartStatus, ClusterError>[src]

Install fluvio locally

Trait Implementations

impl Debug for LocalInstaller[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, 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]