[][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]

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]

impl PartialEq<Referer> for Referer[src]

impl StructuralPartialEq for Referer[src]

Auto Trait Implementations

impl RefUnwindSafe for Referer

impl Send for Referer

impl Sync for Referer

impl Unpin for Referer

impl UnwindSafe for Referer

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.