pub trait RoutePathBuilder {
// Required method
fn build(
&self,
_source_relative: &Path,
_source_path: &Path,
_route_prefix_hint: Option<&Path>,
_route_infix_hint: Option<&Path>,
) -> BuilderResult<PathBuf>;
}