Struct fluvio::config::ConfigFile[][src]

pub struct ConfigFile { /* fields omitted */ }

Implementations

impl ConfigFile[src]

pub fn default_config() -> Result<Self, IoError>[src]

create default profile

pub fn load_default_or_new() -> Result<Self, IoError>[src]

load from default location if not found, create new one

pub fn load(optional_path: Option<String>) -> Result<Self, FluvioError>[src]

try to load from default locations

pub fn config(&self) -> &Config[src]

Return a reference to the internal Config

pub fn mut_config(&mut self) -> &mut Config[src]

Return a mutable reference to the internal Config

pub fn save(&self) -> Result<(), FluvioError>[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<T> WithSubscriber for T[src]