Currently, there is impl Display requirement for all input parameters. It would be great to accept parameters like &Path, PathBuf, impl AsRef etc.
Maybe a trait like IntoDisplay could be helpful. It would be implemented for every T: Display + some others, like Path.
Currently, there is
impl Displayrequirement for all input parameters. It would be great to accept parameters like &Path, PathBuf, impl AsRef etc.Maybe a trait like
IntoDisplaycould be helpful. It would be implemented for every T: Display + some others, like Path.