IConfig

Trait IConfig 

Source
pub trait IConfig: Sized {
    // Required methods
    fn build() -> Result<Self, String>;
    fn help() -> String;
}

Required Methods§

Source

fn build() -> Result<Self, String>

Source

fn help() -> String

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§