pub trait GetTargetPath {
type Item;
// Required method
fn target_path(
&self,
item: &Self::Item,
expected_content_type: &ExpectedContentType,
) -> PathBuf;
}
pub trait GetTargetPath {
type Item;
// Required method
fn target_path(
&self,
item: &Self::Item,
expected_content_type: &ExpectedContentType,
) -> PathBuf;
}