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
use crate::{Headers, HttpVersion, Method};
use std::ops::Add;

#[derive(Debug, Clone)]
pub struct Request<UT, HT> {
    method: Method,
    request_uri: UT,
    http_version: HttpVersion,
    headers: Headers<HT>,
}

#[derive(Debug, Clone)]
pub struct RequestPart<UT, HT> {
    method: Option<Method>,
    request_uri: Option<UT>,
    http_version: Option<HttpVersion>,
    headers: Option<Headers<HT>>,
}

impl<UT, HT> Add<RequestPart<UT, HT>> for RequestPart<UT, HT> {
    type Output = Self;
    fn add(mut self, other: Self) -> Self {
        self.method = self.method.or(other.method);
        self.request_uri = self.request_uri.or(other.request_uri);
        self.http_version = self.http_version.or(other.http_version);
        self.headers = match (self.headers, other.headers) {
            (a, None) => a,
            (None, b) => b,
            (Some(a), Some(b)) => Some(a + b),
        };
        self
    }
}