Referer header, defined in
RFC7231
The Referer [sic] header field allows the user agent to specify a
URI reference for the resource from which the target URI was obtained
(i.e., the "referrer", though the field name is misspelled). A user
agent MUST NOT include the fragment and userinfo components of the
URI reference, if any, when generating the Referer field value.
Referer = absolute-URI / partial-URI
http://www.example.org/hypertext/Overview.html
use headers::Referer;
let r = Referer::from_static("/People.html#tim");
Create a Referer with a static string.
Panics if the string is not a legal header value.
Formats the value using the given formatter. Read more
Performs copy-assignment from source. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=.