Skip to main content

PodResolver

Trait PodResolver 

Source
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.

Required Methods§

Source

fn resolve(&self, host: &str, url_path: &str) -> ResolvedPath

Implementors§