pub trait ContentRouting: Send + Sync {
// Required methods
fn is_html_page(&self, path: &str) -> bool;
fn determine_source(&self, path: &str) -> String;
}Available on crate feature
core only.pub trait ContentRouting: Send + Sync {
// Required methods
fn is_html_page(&self, path: &str) -> bool;
fn determine_source(&self, path: &str) -> String;
}core only.