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
use Cow;
);
/// Passed to `{Request/Response}.headers.set().{name}( 〜 )` and
/// append `value` to the header.
///
/// Here appended values are combined by `,`.
///
/// ---
/// *example.rs*
/// ```no_run
/// use ohkami::prelude::*;
/// use ohkami::header::append;
///
/// #[derive(Clone)]
/// struct AppendServer(&'static str);
/// impl FangAction for AppendServer {
/// async fn back<'b>(&'b self, res: &'b mut Response) {
/// res.headers.set().server(append(self.0));
/// }
/// }
///
/// #[tokio::main]
/// async fn main() {
/// Ohkami::new((
/// AppendServer("ohkami"),
///
/// "/".GET(|| async {"Hello, append!"})
///
/// )).howl("localhost:3000").await
/// }
/// ```