[][src]Struct headers::Referer

pub struct Referer(_);

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.

ABNF

Referer = absolute-URI / partial-URI

Example values

  • http://www.example.org/hypertext/Overview.html

Examples

use headers::Referer;

let r = Referer::from_static("/People.html#tim");

Methods

impl Referer[src]

pub fn from_static(s: &'static str) -> Referer[src]

Create a Referer with a static string.

Panic

Panics if the string is not a legal header value.

Trait Implementations

impl Clone for Referer[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<Referer> for Referer[src]

impl Debug for Referer[src]

impl FromStr for Referer[src]

type Err = InvalidReferer

The associated error which can be returned from parsing.

impl Header for Referer[src]

Auto Trait Implementations

impl Send for Referer

impl Sync for Referer

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self