pub trait OutputDirectory {
fn convert(&self) -> std::path::PathBuf;
}
impl OutputDirectory for &str {
fn convert(&self) -> std::path::PathBuf {
std::path::PathBuf::from(self)
}
}
impl OutputDirectory for &std::path::Path {
fn convert(&self) -> std::path::PathBuf {
std::path::PathBuf::from(self)
}
}