Struct uhttp_uri::HttpResource [] [src]

pub struct HttpResource<'a> {
    pub path: &'a str,
    pub query: Option<&'a str>,
    pub fragment: Option<&'a str>,
}

Components in an HTTP URI resource.

Fields

Path to the resource.

This is guaranteed to be nonempty (it will contain at least "/".)

Parameters used to further identify the resource.

Identifier and parameters for a subresource.

Methods

impl<'a> HttpResource<'a>
[src]

Parse the given string into a new HttpResource.

Trait Implementations

impl<'a> Copy for HttpResource<'a>
[src]

impl<'a> Clone for HttpResource<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> Eq for HttpResource<'a>
[src]

impl<'a> PartialEq for HttpResource<'a>
[src]

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

This method tests for !=.

impl<'a> Debug for HttpResource<'a>
[src]

Formats the value using the given formatter.

impl<'a> Hash for HttpResource<'a>
[src]

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

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

impl<'a> Display for HttpResource<'a>
[src]

Formats the value using the given formatter. Read more