kvarn_utils::prelude::uri

Struct Parts

pub struct Parts {
    pub scheme: Option<Scheme>,
    pub authority: Option<Authority>,
    pub path_and_query: Option<PathAndQuery>,
    /* private fields */
}
Expand description

The various parts of a URI.

This struct is used to provide to and retrieve from a URI.

Fields§

§scheme: Option<Scheme>

The scheme component of a URI

§authority: Option<Authority>

The authority component of a URI

§path_and_query: Option<PathAndQuery>

The origin-form component of a URI

Trait Implementations§

§

impl Debug for Parts