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>;
}Required Methods§
fn build( &self, _source_relative: &Path, _source_path: &Path, _route_prefix_hint: Option<&Path>, _route_infix_hint: Option<&Path>, ) -> BuilderResult<PathBuf>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".