leptos_router 0.8.13

Router for the Leptos web framework.
Documentation
1
2
3
4
5
use super::PartialPathMatch;

pub trait ChooseRoute {
    fn choose_route<'a>(&self, path: &'a str) -> Option<PartialPathMatch<'a>>;
}