[][src]Struct iron::headers::LinkValue

pub struct LinkValue { /* fields omitted */ }

A single link-value of a Link header, based on: RFC5988

Methods

impl LinkValue[src]

pub fn new<T>(uri: T) -> LinkValue where
    T: Into<Cow<'static, str>>, 
[src]

Create LinkValue from URI-Reference.

Get the LinkValue's value.

pub fn rel(&self) -> Option<&[RelationType]>[src]

Get the LinkValue's rel parameter(s).

pub fn anchor(&self) -> Option<&str>[src]

Get the LinkValue's anchor parameter.

pub fn rev(&self) -> Option<&[RelationType]>[src]

Get the LinkValue's rev parameter(s).

pub fn href_lang(&self) -> Option<&[LanguageTag]>[src]

Get the LinkValue's hreflang parameter(s).

pub fn media_desc(&self) -> Option<&[MediaDesc]>[src]

Get the LinkValue's media parameter(s).

pub fn title(&self) -> Option<&str>[src]

Get the LinkValue's title parameter.

pub fn title_star(&self) -> Option<&str>[src]

Get the LinkValue's title* parameter.

pub fn media_type(&self) -> Option<&Mime<Vec<(Attr, Value)>>>[src]

Get the LinkValue's type parameter.

pub fn push_rel(self, rel: RelationType) -> LinkValue[src]

Add a RelationType to the LinkValue's rel parameter.

pub fn set_anchor<T>(self, anchor: T) -> LinkValue where
    T: Into<String>, 
[src]

Set LinkValue's anchor parameter.

pub fn push_rev(self, rev: RelationType) -> LinkValue[src]

Add a RelationType to the LinkValue's rev parameter.

pub fn push_href_lang(self, language_tag: LanguageTag) -> LinkValue[src]

Add a LanguageTag to the LinkValue's hreflang parameter.

pub fn push_media_desc(self, media_desc: MediaDesc) -> LinkValue[src]

Add a MediaDesc to the LinkValue's media_desc parameter.

pub fn set_title<T>(self, title: T) -> LinkValue where
    T: Into<String>, 
[src]

Set LinkValue's title parameter.

pub fn set_title_star<T>(self, title_star: T) -> LinkValue where
    T: Into<String>, 
[src]

Set LinkValue's title* parameter.

pub fn set_media_type(self, media_type: Mime<Vec<(Attr, Value)>>) -> LinkValue[src]

Set LinkValue's type parameter.

Trait Implementations

impl Clone for LinkValue[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<LinkValue> for LinkValue[src]

impl Display for LinkValue[src]

impl Debug for LinkValue[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.

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

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DebugAny for T where
    T: Any + Debug
[src]

impl<T> CloneAny for T where
    T: Clone + Any
[src]

impl<T> UnsafeAny for T where
    T: Any