pub trait RuntimeDef {
    type Cli: CommandCli;
    type Conf: Default + Serialize + for<'de> Deserialize<'de>;

    const NAME: &'static str;
    const VERSION: &'static str;
}
Expand description

Runtime definition trait. Auto-generated with #[derive(RuntimeDef)]

Required Associated Types§

Required Associated Constants§

Implementors§