1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
use hyper::Body;
use std::panic::RefUnwindSafe;
use crate::extractor::{PathExtractor, QueryStringExtractor};
use crate::pipeline::PipelineHandleChain;
use crate::router::builder::single::DefineSingleRoute;
use crate::router::builder::SingleRouteBuilder;
use crate::router::route::matcher::{AndRouteMatcher, RouteMatcher};
pub trait ReplacePathExtractor<T>
where
T: PathExtractor<Body>,
{
type Output: DefineSingleRoute;
#[doc(hidden)]
fn replace_path_extractor(self) -> Self::Output;
}
impl<'a, M, C, P, PE, QSE, NPE> ReplacePathExtractor<NPE>
for SingleRouteBuilder<'a, M, C, P, PE, QSE>
where
M: RouteMatcher + Send + Sync + 'static,
C: PipelineHandleChain<P> + Send + Sync + 'static,
P: RefUnwindSafe + Send + Sync + 'static,
PE: PathExtractor<Body> + Send + Sync + 'static,
QSE: QueryStringExtractor<Body> + Send + Sync + 'static,
NPE: PathExtractor<Body> + Send + Sync + 'static,
{
type Output = SingleRouteBuilder<'a, M, C, P, NPE, QSE>;
fn replace_path_extractor(self) -> Self::Output {
self.coerce()
}
}
pub trait ReplaceQueryStringExtractor<T>
where
T: QueryStringExtractor<Body>,
{
type Output: DefineSingleRoute;
#[doc(hidden)]
fn replace_query_string_extractor(self) -> Self::Output;
}
impl<'a, M, C, P, PE, QSE, NQSE> ReplaceQueryStringExtractor<NQSE>
for SingleRouteBuilder<'a, M, C, P, PE, QSE>
where
M: RouteMatcher + Send + Sync + 'static,
C: PipelineHandleChain<P> + Send + Sync + 'static,
P: RefUnwindSafe + Send + Sync + 'static,
PE: PathExtractor<Body> + Send + Sync + 'static,
QSE: QueryStringExtractor<Body> + Send + Sync + 'static,
NQSE: QueryStringExtractor<Body> + Send + Sync + 'static,
{
type Output = SingleRouteBuilder<'a, M, C, P, PE, NQSE>;
fn replace_query_string_extractor(self) -> Self::Output {
self.coerce()
}
}
pub trait ExtendRouteMatcher<NRM>
where
NRM: RouteMatcher + Send + Sync + 'static,
{
type Output: DefineSingleRoute;
#[doc(hidden)]
fn extend_route_matcher(self, matcher: NRM) -> Self::Output;
}
impl<'a, M, NRM, C, P, PE, QSE> ExtendRouteMatcher<NRM> for SingleRouteBuilder<'a, M, C, P, PE, QSE>
where
M: RouteMatcher + Send + Sync + 'static,
NRM: RouteMatcher + Send + Sync + 'static,
C: PipelineHandleChain<P> + Send + Sync + 'static,
P: RefUnwindSafe + Send + Sync + 'static,
PE: PathExtractor<Body> + Send + Sync + 'static,
QSE: QueryStringExtractor<Body> + Send + Sync + 'static,
{
type Output = SingleRouteBuilder<'a, AndRouteMatcher<M, NRM>, C, P, PE, QSE>;
fn extend_route_matcher(self, matcher: NRM) -> Self::Output {
SingleRouteBuilder {
matcher: AndRouteMatcher::<M, NRM>::new(self.matcher, matcher),
phantom: self.phantom,
node_builder: self.node_builder,
pipeline_chain: self.pipeline_chain,
pipelines: self.pipelines,
}
}
}