Struct parse_link_header::Link

source ·
pub struct Link {
    pub uri: Uri,
    pub raw_uri: String,
    pub queries: HashMap<String, String>,
    pub params: HashMap<String, String>,
}
Expand description

Struct to describe a single Link: header entry.

This stores the raw URI found in the header, as well as parsed forms of that URI (including the queries) and any parameters associated with this URI.

Fields

uri: Uri

A parsed form of the URI

raw_uri: String

The raw text string of the URI

queries: HashMap<String, String>

A HashMap of the query part of the URI (in the form of key=value)

params: HashMap<String, String>

A HashMap of the parameters associated with this URI. The most common is rel, indicating the relationship between the current HTTP data being fetched and the URI in this Link: header.

Trait Implementations

Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.