Struct headers_ext::UserAgent[][src]

pub struct UserAgent(_);

User-Agent header, defined in RFC7231

The User-Agent header field contains information about the user agent originating the request, which is often used by servers to help identify the scope of reported interoperability problems, to work around or tailor responses to avoid particular user agent limitations, and for analytics regarding browser or operating system use. A user agent SHOULD send a User-Agent field in each request unless specifically configured not to do so.

ABNF

User-Agent = product *( RWS ( product / comment ) )
product         = token ["/" product-version]
product-version = token

Example values

  • CERN-LineMode/2.15 libwww/2.17b3
  • Bunnies

Notes

  • The parser does not split the value

Example

use headers::UserAgent;

let ua = UserAgent::from_static("hyper/0.12.2");

Methods

impl UserAgent
[src]

Create a UserAgent from a static string.

View this UserAgent as a &str.

Trait Implementations

impl Clone for UserAgent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for UserAgent
[src]

Formats the value using the given formatter. Read more

impl PartialEq for UserAgent
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for UserAgent
[src]

impl PartialOrd for UserAgent
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for UserAgent
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl Hash for UserAgent
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl FromStr for UserAgent
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

impl Display for UserAgent
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for UserAgent

impl Sync for UserAgent