Struct parse_link_header::Link[][src]

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 !=.

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

Performs the conversion.

Performs the conversion.

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.