h10 0.6.10

Simple HTTP/1.0 Server
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::http::headers::{HeaderName, HeaderValue};

/// ### Referer
/// Related:  back-links to resources for interest, logging, optimized caching,
///          etc.
///
/// Reference: https://www.rfc-editor.org/rfc/rfc1945.html#section-10.13
#[derive(Debug, PartialEq, Eq)]
pub struct Referer {
    name: HeaderName,
    value: HeaderValue,
}