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
use std::borrow::Cow;
use super::Header;
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub struct Raw<'x> {
pub raw: Cow<'x, str>,
}
impl<'x> Raw<'x> {
pub fn new(raw: impl Into<Cow<'x, str>>) -> Self {
Self { raw: raw.into() }
}
}
impl<'x, T> From<T> for Raw<'x>
where
T: Into<Cow<'x, str>>,
{
fn from(value: T) -> Self {
Self::new(value)
}
}
impl<'x> Header for Raw<'x> {
fn write_header(
&self,
mut output: impl std::io::Write,
mut bytes_written: usize,
) -> std::io::Result<usize> {
for (pos, &ch) in self.raw.as_bytes().iter().enumerate() {
if bytes_written >= 76 && ch.is_ascii_whitespace() && pos < self.raw.len() - 1 {
output.write_all(b"\r\n\t")?;
bytes_written = 1;
}
output.write_all(&[ch])?;
bytes_written += 1;
}
output.write_all(b"\r\n")?;
Ok(0)
}
}