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
use std::borrow::Cow;

use bytes::{Bytes, BytesMut};
use http_body_util::Full;

use crate::http::HeaderValue;

use super::TypedBody;

impl TypedBody for Bytes {
    type Body = Full<Bytes>;

    fn content_type(&self) -> HeaderValue {
        HeaderValue::from_static(mime::APPLICATION_OCTET_STREAM.as_ref())
    }

    fn body(self) -> Self::Body {
        Full::new(self)
    }
}

impl TypedBody for Vec<u8> {
    type Body = Full<Bytes>;

    fn content_type(&self) -> HeaderValue {
        HeaderValue::from_static(mime::APPLICATION_OCTET_STREAM.as_ref())
    }

    fn body(self) -> Self::Body {
        Full::new(self.into())
    }
}

impl TypedBody for &'static [u8] {
    type Body = Full<Bytes>;

    fn content_type(&self) -> HeaderValue {
        HeaderValue::from_static(mime::APPLICATION_OCTET_STREAM.as_ref())
    }

    fn body(self) -> Self::Body {
        Full::new(self.into())
    }
}

impl TypedBody for BytesMut {
    type Body = Full<Bytes>;

    fn content_type(&self) -> HeaderValue {
        HeaderValue::from_static(mime::APPLICATION_OCTET_STREAM.as_ref())
    }

    fn body(self) -> Self::Body {
        Full::new(self.freeze())
    }
}

impl TypedBody for Cow<'static, [u8]> {
    type Body = Full<Bytes>;

    fn content_type(&self) -> HeaderValue {
        HeaderValue::from_static(mime::APPLICATION_OCTET_STREAM.as_ref())
    }

    fn body(self) -> Self::Body {
        match self {
            Cow::Borrowed(s) => s.body(),
            Cow::Owned(s) => s.body(),
        }
    }
}