Struct hyper::header::LinkValue
[−]
[src]
pub struct LinkValue { /* fields omitted */ }
A single link-value
of a Link
header, based on:
RFC5988
Methods
impl LinkValue
[src]
fn new<T>(uri: T) -> LinkValue where
T: Into<Cow<'static, str>>,
[src]
T: Into<Cow<'static, str>>,
Create LinkValue
from URI-Reference.
fn link(&self) -> &str
[src]
Get the LinkValue
's value.
fn rel(&self) -> Option<&[RelationType]>
[src]
Get the LinkValue
's rel
parameter(s).
fn anchor(&self) -> Option<&str>
[src]
Get the LinkValue
's anchor
parameter.
fn rev(&self) -> Option<&[RelationType]>
[src]
Get the LinkValue
's rev
parameter(s).
fn href_lang(&self) -> Option<&[LanguageTag]>
[src]
Get the LinkValue
's hreflang
parameter(s).
fn media_desc(&self) -> Option<&[MediaDesc]>
[src]
Get the LinkValue
's media
parameter(s).
fn title(&self) -> Option<&str>
[src]
Get the LinkValue
's title
parameter.
fn title_star(&self) -> Option<&str>
[src]
Get the LinkValue
's title*
parameter.
fn media_type(&self) -> Option<&Mime>
[src]
Get the LinkValue
's type
parameter.
fn push_rel(self, rel: RelationType) -> LinkValue
[src]
Add a RelationType
to the LinkValue
's rel
parameter.
fn set_anchor<T: Into<String>>(self, anchor: T) -> LinkValue
[src]
Set LinkValue
's anchor
parameter.
fn push_rev(self, rev: RelationType) -> LinkValue
[src]
Add a RelationType
to the LinkValue
's rev
parameter.
fn push_href_lang(self, language_tag: LanguageTag) -> LinkValue
[src]
Add a LanguageTag
to the LinkValue
's hreflang
parameter.
fn push_media_desc(self, media_desc: MediaDesc) -> LinkValue
[src]
Add a MediaDesc
to the LinkValue
's media_desc
parameter.
fn set_title<T: Into<String>>(self, title: T) -> LinkValue
[src]
Set LinkValue
's title
parameter.
fn set_title_star<T: Into<String>>(self, title_star: T) -> LinkValue
[src]
Set LinkValue
's title*
parameter.
fn set_media_type(self, media_type: Mime) -> LinkValue
[src]
Set LinkValue
's type
parameter.
Trait Implementations
impl Clone for LinkValue
[src]
fn clone(&self) -> LinkValue
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialEq for LinkValue
[src]
fn eq(&self, __arg_0: &LinkValue) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &LinkValue) -> bool
[src]
This method tests for !=
.