use turbo_rcstr::RcStr; use turbo_tasks::{FxIndexMap, Vc}; #[turbo_tasks::value] #[derive(Debug, Clone)] #[serde(untagged)] pub enum Param { Single(RcStr), Multi(Vec), } #[turbo_tasks::value(transparent)] #[derive(Debug, Clone)] pub struct Params(pub Option>); /// Extracts parameters from a URL path. pub trait RouteMatcherRef { /// Returns whether the given path is a match for the route. fn matches(&self, path: &str) -> bool; /// Returns the parameters extracted from the given path. fn params(&self, path: &str) -> Params; } /// Extracts parameters from a URL path (Vc version) #[turbo_tasks::value_trait] pub trait RouteMatcher { /// Returns whether the given path is a match for the route. #[turbo_tasks::function] fn matches(self: Vc, path: RcStr) -> Vc; /// Returns the parameters extracted from the given path. #[turbo_tasks::function] fn params(self: Vc, path: RcStr) -> Vc; }