pub trait AuthorArgs {
// Required methods
fn author_command(&self) -> Option<&str>;
fn author_file(&self) -> Option<&str>;
}Expand description
From a cli args, get the author configuration
Required Methods§
Get the command to run to generate the authors file
Get path to author file
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".