Trait JsonArgsHelper

Source
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§

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§

Source§

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