pub trait PodResolver: Send + Sync {
// Required method
fn resolve(&self, host: &str, url_path: &str) -> ResolvedPath;
}Expand description
Policy that maps (host, url_path) onto a ResolvedPath.
pub trait PodResolver: Send + Sync {
// Required method
fn resolve(&self, host: &str, url_path: &str) -> ResolvedPath;
}Policy that maps (host, url_path) onto a ResolvedPath.