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

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§