http-type 17.5.0

A comprehensive Rust library providing essential types for HTTP operations. Includes core HTTP abstractions (request/response, methods, status codes, versions), content types, cookies, WebSocket support, and thread-safe concurrent types (ArcMutex, ArcRwLock). Also provides convenient Option-wrapped primitive types for flexible HTTP handling.
Documentation
use crate::*;

/// Represents the components of a parsed HTTP URL.
///
/// This struct holds various parts of a URL, including the protocol, host, port,
/// path, query, and fragment, allowing for structured access to URL information.
#[derive(Clone, Debug, Default, Eq, PartialEq)]
pub struct HttpUrlComponents {
    /// The URL scheme, such as "http" or "https".
    pub protocol: String,
    /// The host part of the URL.
    pub host: Option<String>,
    /// The port number in the URL, if specified.
    pub port: Option<u16>,
    /// The path in the URL.
    pub path: Option<String>,
    /// The query string in the URL.
    pub query: Option<String>,
    /// The fragment identifier.
    pub fragment: Option<String>,
}