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
use std::fmt;
#[derive(Default)]
pub struct Extensions {
inner: http::Extensions,
}
impl Extensions {
pub(crate) fn new() -> Self {
Self {
inner: http::Extensions::new(),
}
}
#[inline]
pub fn insert<T: Send + Sync + 'static>(&mut self, val: T) -> Option<T> {
self.inner.insert(val)
}
#[inline]
pub fn get<T: Send + Sync + 'static>(&self) -> Option<&T> {
self.inner.get()
}
#[inline]
pub fn get_mut<T: Send + Sync + 'static>(&mut self) -> Option<&mut T> {
self.inner.get_mut()
}
#[inline]
pub fn remove<T: Send + Sync + 'static>(&mut self) -> Option<T> {
self.inner.remove()
}
#[inline]
pub fn clear(&mut self) {
self.inner.clear()
}
#[inline]
pub(crate) fn from_http(http: http::Extensions) -> Self {
Self { inner: http }
}
#[inline]
pub fn into_http(self) -> http::Extensions {
self.inner
}
}
impl fmt::Debug for Extensions {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Extensions").finish()
}
}
#[derive(Debug)]
pub struct GrpcMethod {
service: &'static str,
method: &'static str,
}
impl GrpcMethod {
#[doc(hidden)]
pub fn new(service: &'static str, method: &'static str) -> Self {
Self { service, method }
}
pub fn service(&self) -> &str {
self.service
}
pub fn method(&self) -> &str {
self.method
}
}