1 2 3 4 5
use super::PartialPathMatch; pub trait ChooseRoute { fn choose_route<'a>(&self, path: &'a str) -> Option<PartialPathMatch<'a>>; }