pub trait JsonArgsHelper
where Self: JsonArgs,
{ // Required methods fn init_args_and_logging_nosave() -> Result<(JsonConfigFile<Self>, bool)>; fn save_args(args_file: &JsonConfigFile<Self>) -> Result<()>; fn init_args_and_logging() -> Result<JsonConfigFile<Self>>; }

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> JsonArgsHelper for T
where T: JsonArgs,